fix: make pylint happy

This commit is contained in:
Lance Edgar 2025-12-29 12:55:07 -06:00
parent e397890098
commit 4cb3832213
2 changed files with 4 additions and 2 deletions

View file

@ -28,7 +28,6 @@ import sys
import rich
import typer
from typing_extensions import Annotated
from wuttjamaican.cli import wutta_typer

View file

@ -23,6 +23,7 @@
"""
Data Import / Export Handlers
"""
# pylint: disable=too-many-lines
import logging
import os
@ -48,7 +49,9 @@ class Orientation(Enum):
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.