File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2
2
disable =missing-module-docstring,
3
3
missing-function-docstring,
4
4
missing-class-docstring,
5
- fixme
5
+ fixme,
6
+ too-many-lines
Original file line number Diff line number Diff line change 1
1
from .execute import execute
2
2
from .search import search_anime
3
- from . import globals
3
+ from . import globals # pylint: disable=redefined-builtin
Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ class CustomTheme(npyscreen.ThemeManager):
79
79
}
80
80
81
81
82
+ # pylint: disable=too-many-ancestors, too-many-instance-attributes
82
83
class EpisodeForm (npyscreen .ActionForm ):
83
84
def create (self ):
84
85
logging .debug ("Creating EpisodeForm" )
@@ -342,9 +343,9 @@ def go_to_second_form(self):
342
343
self .parentApp .switchForm ("SECOND" )
343
344
344
345
346
+ # pylint: disable=R0901
345
347
class SecondForm (npyscreen .ActionFormV2 ):
346
348
def create (self ):
347
-
348
349
anime_slug = self .parentApp .anime_slug
349
350
anime_title = format_anime_title (anime_slug )
350
351
@@ -389,6 +390,7 @@ def onStart(self):
389
390
self .addForm ("SECOND" , SecondForm , name = "Description" )
390
391
391
392
393
+ # pylint: disable=R0912, R0915
392
394
def parse_arguments ():
393
395
logging .debug ("Parsing command line arguments" )
394
396
You can’t perform that action at this time.
0 commit comments