Skip to content

Commit

Permalink
refactor: comment out invalid-name errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mecaneer23 committed Mar 17, 2024
1 parent dda97cc commit 44e60eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tcurses.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def clear(self) -> None:

_color_pairs: list[tuple[int, int]] = [(7, 0)]

window = _CursesWindow
window = _CursesWindow # pylint: disable=invalid-name


def use_default_colors() -> None:
Expand Down Expand Up @@ -365,7 +365,7 @@ def initscr() -> _CursesWindow:
raise NotImplementedError("initscr not implemented, use wrapper instead")


class error(Exception):
class error(Exception): # pylint: disable=invalid-name
"""Exception raised when a curses library function returns an error."""


Expand Down

0 comments on commit 44e60eb

Please sign in to comment.