Changes to appease ruff linter

This commit is contained in:
Micah Jerome Ellison 2024-09-30 18:03:48 -07:00
parent ab78a09ccf
commit dc05e29cda
3 changed files with 6 additions and 6 deletions

View file

@ -296,7 +296,7 @@ class TestDeserialization:
)
def test_deserialize_multiword_strings(self, input_str):
runtime_config = make_yaml_valid_dict(input_str)
assert runtime_config.__class__ == dict
assert runtime_config.__class__ is dict
assert input_str[0] in runtime_config
assert runtime_config[input_str[0]] == input_str[1]