Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
astroid==4.0.2
dill==0.4.0
iniconfig==2.3.0
isort==7.0.0
mccabe==0.7.0
mypy==1.18.2
mypy-extensions==1.1.0
packaging==25.0
pathspec==0.12.1
platformdirs==4.5.0
pluggy==1.6.0
pygments==2.19.2
pylint==4.0.3
pytest==9.0.1
tomlkit==0.13.3
typing-extensions==4.15.0
3 changes: 1 addition & 2 deletions tests/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def count_columns(file_name: Path) -> None:

with open(file_name, mode="r", encoding="utf-8") as my_file:
for line in my_file:

# All lines must match the header of the file:
if first_line:
first_line = False
Expand All @@ -32,4 +32,3 @@ def test_column_count() -> None:
csv_realpath: Path = Path(f"{cwd}/pycons/2025/resources.csv")
print(f"Testing file: {csv_realpath}")
count_columns(csv_realpath)