Skip to content

Commit

Permalink
lint: fix string formatting
Browse files Browse the repository at this point in the history
Merged a linter upgrade along with an older PR, so this was immediately in violation

Signed-off-by: Milas Bowman <[email protected]>
  • Loading branch information
milas committed Jan 3, 2024
1 parent eeb9ea1 commit 409e6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/models_configs_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ class CreateConfigsTest(unittest.TestCase):
def test_create_config(self):
client = make_fake_client()
config = client.configs.create(name="super_config", data="config")
assert config.__repr__() == "<Config: '{}'>".format(FAKE_CONFIG_NAME)
assert config.__repr__() == f"<Config: '{FAKE_CONFIG_NAME}'>"

0 comments on commit 409e6e0

Please sign in to comment.