Skip to content

Commit

Permalink
style: update 9 files
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelCurrin committed May 24, 2024
1 parent 9704ba2 commit cf4ab23
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_history.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
History module tests.
"""

# pylint: disable=missing-function-docstring
import datetime

Expand Down
1 change: 1 addition & 0 deletions tests/test_logger.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Logger module tests.
"""

# pylint: disable=missing-function-docstring
from pathlib import Path

Expand Down
1 change: 1 addition & 0 deletions tests/test_paths.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Paths module tests.
"""

# pylint: disable=missing-function-docstring
from unicron import paths

Expand Down
1 change: 1 addition & 0 deletions tests/test_run.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Run module tests.
"""

# pylint: disable=missing-function-docstring
from unicron import run

Expand Down
1 change: 1 addition & 0 deletions unicron/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Constants module.
"""

import os
from pathlib import Path

Expand Down
1 change: 1 addition & 0 deletions unicron/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Check when a task last ran and if it needs to run today.
"""

import datetime

from . import constants, logger, paths
Expand Down
1 change: 1 addition & 0 deletions unicron/logger.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Logger module.
"""

import logging
from pathlib import Path

Expand Down
1 change: 1 addition & 0 deletions unicron/paths.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Paths module.
"""

from pathlib import Path

from . import constants
Expand Down
1 change: 1 addition & 0 deletions unicron/run.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Run module.
"""

import datetime
import subprocess
import textwrap
Expand Down

0 comments on commit cf4ab23

Please sign in to comment.