Skip to content

Commit

Permalink
chore: Make mypy happy (explicit reexport) (#154)
Browse files Browse the repository at this point in the history
Co-authored-by: Zahid <tech@zahid.rocks>
  • Loading branch information
a1d4r and zahidkizmaz committed Jun 12, 2024
1 parent 72265e4 commit fa2e2bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,6 @@ dmypy.json

# Pyre type checker
.pyre/

# PyCharm
.idea/
2 changes: 1 addition & 1 deletion decimify/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from decimify.parser import decimify # noqa: F401
from decimify.parser import decimify as decimify
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ lint.ignore = ["D1"] # pydocstyle missing docs

[tool.ruff.lint.per-file-ignores]
"**/tests/**" = ["S101", "ARG002"]
"__init__.py" = ["PLC0414"]

[tool.ruff.lint.pydocstyle]
convention = "google"
Expand Down

0 comments on commit fa2e2bd

Please sign in to comment.