forked from p15670423/monkey
BB: Fix type annotation in noop_test_configuration
This commit is contained in:
parent
3ced1d97d9
commit
b5bd0532b7
|
@ -1,3 +1,5 @@
|
|||
from typing import Tuple
|
||||
|
||||
from common.agent_configuration import (
|
||||
AgentConfiguration,
|
||||
CustomPBAConfiguration,
|
||||
|
@ -47,9 +49,9 @@ _agent_configuration = AgentConfiguration(
|
|||
payloads=[],
|
||||
propagation=_propagation_configuration,
|
||||
)
|
||||
_propagation_credentials = tuple()
|
||||
_propagation_credentials: Tuple = tuple()
|
||||
|
||||
# This is an empty, NOOP configuration from which other configurations can be built
|
||||
noop_test_configuration = TestConfiguration(
|
||||
noop_test_configuration: TestConfiguration = TestConfiguration(
|
||||
agent_configuration=_agent_configuration, propagation_credentials=_propagation_credentials
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue