Skip to content

Commit

Permalink
fix(review): remove redundant type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
lukany committed Aug 9, 2023
1 parent f2ddfcb commit cc7e8b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions edvart/report_sections/section_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ class Verbosity(IntEnum):
data type inference and default statistics become customizable.
"""

LOW: int = 0
MEDIUM: int = 1
HIGH: int = 2
LOW = 0
MEDIUM = 1
HIGH = 2


class Section(ABC):
Expand Down

0 comments on commit cc7e8b2

Please sign in to comment.