Skip to content

Commit

Permalink
refactor: ignore single line rather than blanket
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Dec 21, 2022
1 parent a165b32 commit 2e590b5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion ci/make_geography_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def main() -> None:
db_path = Path(args.output_directory).joinpath("geography.db")
con = sa.create_engine(f"sqlite:///{db_path}")
make_geography_db(input_data, con)
print(db_path)
print(db_path) # noqa: T201


if __name__ == "__main__":
Expand Down
3 changes: 0 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -309,9 +309,6 @@ ignore = ["E501", "PGH003", "RET504", "RET505", "RET506", "RET507", "RET508"]
exclude = ["**/*_py310.py", "ibis/tests/*/snapshots/*"]
target-version = "py38"

[tool.ruff.per-file-ignores]
"ci/make_geography_db.py" = ["T20"]

[tool.black]
line_length = 88
skip_string_normalization = true
Expand Down

0 comments on commit 2e590b5

Please sign in to comment.