Skip to content

Commit

Permalink
refactor: fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
mecaneer23 committed Dec 31, 2023
1 parent f623c24 commit 9cff053
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions typings/tcurses.pyi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# pylint: disable=missing-class-docstring, too-many-ancestors, unused-argument
# pylint: disable=missing-function-docstring, missing-module-docstring, multiple-statements
# pylint: disable=missing-docstring, too-many-ancestors
# pylint: disable=unused-argument, multiple-statements

from tkinter import Text
from typing import Any, Callable, TypeVar
Expand Down Expand Up @@ -39,7 +39,9 @@ class curses: # pylint: disable=invalid-name
@staticmethod
def color_pair(pair_number: int) -> int: ...
@staticmethod
def newwin(nlines: int, ncols: int, begin_y: int = 0, begin_x: int = 0) -> Screen: ... # pylint: disable=used-before-assignment
def newwin(
nlines: int, ncols: int, begin_y: int = 0, begin_x: int = 0
) -> Screen: ... # pylint: disable=used-before-assignment
@staticmethod
def wrapper(
func: Callable[..., T], *args: list[Any], **kwargs: dict[str, Any]
Expand All @@ -53,7 +55,6 @@ class curses: # pylint: disable=invalid-name
@staticmethod
def initscr() -> Screen: ... # pylint: disable=used-before-assignment


class error(Exception): ...

class _Key:
Expand Down

0 comments on commit 9cff053

Please sign in to comment.