Skip to content

Commit

Permalink
Fixing Ruff issues
Browse files Browse the repository at this point in the history
  • Loading branch information
YHordijk committed Sep 16, 2023
1 parent dc51980 commit 0b161d4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/test_input_reader.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import os
from TCutility import results
from pprint import pprint

j = os.path.join

Expand All @@ -9,4 +8,4 @@ def test_reading() -> None:
input_dir = j('test', 'fixtures', 'input_files')
for file in os.listdir(input_dir):
with open(j(input_dir, file)) as inp:
sett = results.ams.get_ams_input(inp.read())
results.ams.get_ams_input(inp.read())

0 comments on commit 0b161d4

Please sign in to comment.