Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jsh9 committed Jan 16, 2024
1 parent 49e59fb commit df8e56b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pydoclint/visitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ def __init__(
ignoreUnderscoreArgs: bool = True,
requireReturnSectionWhenReturningNothing: bool = False,
requireYieldSectionWhenYieldingNothing: bool = False,
propertyMethodOptions: str = '-1,-2,-3,+4',
) -> None:
self.style: str = style
self.argTypeHintsInSignature: bool = argTypeHintsInSignature
Expand All @@ -74,7 +73,6 @@ def __init__(
self.requireYieldSectionWhenYieldingNothing: bool = (
requireYieldSectionWhenYieldingNothing
)
self.propertyMethodOptions = propertyMethodOptions

self.parent: Optional[ast.AST] = None # keep track of parent node
self.violations: List[Violation] = []
Expand Down

0 comments on commit df8e56b

Please sign in to comment.