Skip to content

Publicize handler methods #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 22 commits into from
Jun 17, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unnecessary pylint disables
  • Loading branch information
tekktrik committed Jun 17, 2022
commit 67011dbcf4f61e22e24e769d762a0d5844ebba96
2 changes: 0 additions & 2 deletions adafruit_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ def _level_for(value: int) -> str:
)


# pylint: disable=too-few-public-methods
class Handler:
"""Abstract logging message handler."""

Expand Down Expand Up @@ -245,7 +244,6 @@ def _addLogger(logger_name: str) -> None:
logger_cache[logger_name] = Logger(logger_name)


# pylint:disable=global-statement
def getLogger(logger_name: str) -> "Logger":
"""Create or retrieve a logger by name; only retrieves loggers
made using this function; if a Logger with this name does not
Expand Down