Apply flake8

This commit is contained in:
nabenabe0928
2023-11-22 06:47:33 +01:00
parent f2f5e36657
commit f0f876596a
+2 -2
View File
@@ -294,7 +294,7 @@ class APITestCase(TestCase):
# Check if the version 1 is deleted.
assert study.system_attrs == {
note_ver_key(0): request_body["version"],
f"{note_str_key_prefix(0)}{0}": request_body["body"],
f"{note_str_key_prefix(0)}{0}": request_body["body"],
}
def test_save_trial_note(self) -> None:
@@ -303,7 +303,7 @@ class APITestCase(TestCase):
self.assertEqual(status, 204)
assert study.system_attrs == {
note_ver_key(0): request_body["version"],
f"{note_str_key_prefix(0)}{0}": request_body["body"],
f"{note_str_key_prefix(0)}{0}": request_body["body"],
}
def test_save_trial_note_with_wrong_version(self) -> None: