Skip to content

Commit c8b9a88

Browse files
Apply suggestion from @Copilot
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 9a58c28 commit c8b9a88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/unit/fixtures.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def _load_fixtures(self):
3030
self.fixtures = {}
3131

3232
for json_file in FIXTURES_DIR.iterdir():
33-
if not json_file.suffix == ".json":
33+
if json_file.suffix != ".json":
3434
continue
3535

3636
with open(FIXTURES_DIR / json_file) as f:

0 commit comments

Comments
 (0)