Skip to content

Commit

Permalink
fix: adds __all__ to init and flake8 plugins to deps (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwise-constructs authored Nov 21, 2024
1 parent 683fd45 commit b2163d3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ape_bsc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,10 @@ def __getattr__(name: str):
import ape_bsc.ecosystem as module

return getattr(module, name)


__all__ = [
"NETWORKS",
"BSC",
"BSCConfig",
]
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
"flake8>=7.1.1,<8", # Style linter
"flake8-breakpoint>=1.1.0,<2", # Detect breakpoints left in code
"flake8-print>=5.0.0,<6", # Detect print statements left in code
"flake8-pydantic", # For detecting issues with Pydantic models
"flake8-type-checking", # Detect imports to move in/out of type-checking blocks
"isort>=5.13.2,<6", # Import sorting linter
"mdformat>=0.7.18", # Auto-formatter for markdown
"mdformat-gfm>=0.3.5", # Needed for formatting GitHub-flavored markdown
Expand Down

0 comments on commit b2163d3

Please sign in to comment.