Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 27, 2024
1 parent 1529247 commit db78ae0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Setup for Pytong."""

import setuptools # type: ignore

with open("README.md", "r", encoding="utf-8") as fh:
Expand Down
1 change: 1 addition & 0 deletions src/pytong/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Initialize and bring in modules."""

from .log import Log # noqa
from .base import BaseLog # noqa
from .config import log_config # noqa
Expand Down
1 change: 1 addition & 0 deletions src/pytong/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Base mainly includes the description fields
"""

import logging
from typing import Optional

Expand Down
1 change: 1 addition & 0 deletions src/pytong/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Logging with a tree of loggers
"""

import logging
from pathlib import Path
from typing import Optional
Expand Down
1 change: 1 addition & 0 deletions tests/test_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Assumes that you are pip installing, so for development run pip install -e
"""

import sys

print(f"{__name__=} {sys.path=}")
Expand Down

0 comments on commit db78ae0

Please sign in to comment.