Skip to content

Commit

Permalink
fix: add missing prop for allowed_base_exceptions
Browse files Browse the repository at this point in the history
originally implemented by @saulbein on #64
  • Loading branch information
guilatrova committed May 23, 2023
1 parent 5358865 commit 1497ab8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/tryceratops/flake_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@

PACKAGE_NAME = "tryceratops"
GLOBAL_DUMMY_FILTER = GlobalSettings(
include_experimental=False, ignore_violations=[], exclude_dirs=[], autofix=False
include_experimental=False,
ignore_violations=[],
exclude_dirs=[],
autofix=False,
allowed_base_exceptions=set(),
)
FLAKE8_VIOLATION_TYPE = Tuple[int, int, str, Type[Any]]
# line, offset, message, class
Expand Down

0 comments on commit 1497ab8

Please sign in to comment.