Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TwistedTwigleg committed May 3, 2023
1 parent 8806e92 commit 4f1708a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test_mqtt5_credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ def test_mqtt5_ws_cred_static(self):
_get_env_variable("AWS_TEST_MQTT5_ROLE_CREDENTIAL_SESSION_TOKEN")
)
credentials = auth.AwsCredentialsProvider.new_default_chain()

def sign_function(transform_args, **kwargs):
signing_config = auth.AwsSigningConfig(
algorithm=auth.AwsSigningAlgorithm.V4,
Expand Down Expand Up @@ -206,6 +207,7 @@ def test_mqtt5_ws_cred_default(self):
port=443
)
credentials = auth.AwsCredentialsProvider.new_default_chain()

def sign_function(transform_args, **kwargs):
signing_config = auth.AwsSigningConfig(
algorithm=auth.AwsSigningAlgorithm.V4,
Expand Down Expand Up @@ -278,6 +280,7 @@ def test_mqtt5_ws_cred_x509(self):
thing_name=_get_env_variable("AWS_TEST_MQTT5_IOT_CORE_X509_THING_NAME"),
tls_ctx=io.ClientTlsContext(x509_tls)
)

def sign_function(transform_args, **kwargs):
signing_config = auth.AwsSigningConfig(
algorithm=auth.AwsSigningAlgorithm.V4,
Expand Down Expand Up @@ -310,6 +313,7 @@ def test_mqtt5_ws_cred_profile(self):
config_filepath=_get_env_variable("AWS_TEST_MQTT5_IOT_PROFILE_CONFIG"),
credentials_filepath=_get_env_variable("AWS_TEST_MQTT5_IOT_PROFILE_CREDENTIALS")
)

def sign_function(transform_args, **kwargs):
signing_config = auth.AwsSigningConfig(
algorithm=auth.AwsSigningAlgorithm.V4,
Expand Down

0 comments on commit 4f1708a

Please sign in to comment.