From 9cff0532ad09ee6b1e9c4ef0f07cad76628a490a Mon Sep 17 00:00:00 2001 From: mecaneer23 Date: Sun, 31 Dec 2023 00:26:20 -0600 Subject: [PATCH] refactor: fix line length --- typings/tcurses.pyi | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/typings/tcurses.pyi b/typings/tcurses.pyi index 720ce77..76dfd63 100644 --- a/typings/tcurses.pyi +++ b/typings/tcurses.pyi @@ -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 @@ -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] @@ -53,7 +55,6 @@ class curses: # pylint: disable=invalid-name @staticmethod def initscr() -> Screen: ... # pylint: disable=used-before-assignment - class error(Exception): ... class _Key: