Skip to content

Commit

Permalink
Adjust pylint markers due to new formatting
Browse files Browse the repository at this point in the history
Signed-off-by: John Strunk <[email protected]>
  • Loading branch information
JohnStrunk committed Apr 6, 2023
1 parent 817a078 commit 85baeb7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,8 @@ def __init__(self, parent: Widget, vm: Model) -> None:
self._options_frame(self).grid(column=1, row=0, sticky="news")
self._preview(self).grid(column=1, row=1, sticky="news")

def _appearance(
self, parent: Widget
) -> Widget: # pylint: disable=too-many-statements
# pylint: disable=too-many-statements
def _appearance(self, parent: Widget) -> Widget:
mainframe = ttk.LabelFrame(parent, text="Appearance")

txt_frame = ttk.Frame(mainframe)
Expand Down
3 changes: 2 additions & 1 deletion racetimes.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,12 @@ class DO4(RaceTimes):
Implementation of RaceTimes class for CTS Dolphin w/ Splits (.do4 files).
"""

# pylint: disable=too-many-arguments
def __init__(
self,
stream: io.TextIOBase,
min_times: int,
threshold: RawTime, # pylint: disable=too-many-arguments
threshold: RawTime,
when: datetime,
meet_id: str,
):
Expand Down

0 comments on commit 85baeb7

Please sign in to comment.