fix: make pylint happy
This commit is contained in:
parent
e397890098
commit
4cb3832213
2 changed files with 4 additions and 2 deletions
|
|
@ -28,7 +28,6 @@ import sys
|
||||||
|
|
||||||
import rich
|
import rich
|
||||||
import typer
|
import typer
|
||||||
from typing_extensions import Annotated
|
|
||||||
|
|
||||||
from wuttjamaican.cli import wutta_typer
|
from wuttjamaican.cli import wutta_typer
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@
|
||||||
"""
|
"""
|
||||||
Data Import / Export Handlers
|
Data Import / Export Handlers
|
||||||
"""
|
"""
|
||||||
|
# pylint: disable=too-many-lines
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
|
|
@ -48,7 +49,9 @@ class Orientation(Enum):
|
||||||
EXPORT = "export"
|
EXPORT = "export"
|
||||||
|
|
||||||
|
|
||||||
class ImportHandler(GenericHandler): # pylint: disable=too-many-public-methods
|
class ImportHandler( # pylint: disable=too-many-public-methods,too-many-instance-attributes
|
||||||
|
GenericHandler
|
||||||
|
):
|
||||||
"""
|
"""
|
||||||
Base class for all import/export handlers.
|
Base class for all import/export handlers.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue