From 694d9792e6c5f89b9fc6fd4d32a80216d5129ef7 Mon Sep 17 00:00:00 2001 From: Milas Bowman Date: Wed, 3 Jan 2024 14:01:42 -0500 Subject: [PATCH] lint: fix string formatting (#3211) Merged a linter upgrade along with an older PR, so this was immediately in violation Signed-off-by: Milas Bowman --- tests/unit/models_configs_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/models_configs_test.py b/tests/unit/models_configs_test.py index 6960397ff..5d52daf76 100644 --- a/tests/unit/models_configs_test.py +++ b/tests/unit/models_configs_test.py @@ -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__() == "".format(FAKE_CONFIG_NAME) + assert config.__repr__() == f""