Skip to content
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

fixes #14 imports #16

Merged
merged 1 commit into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 3 additions & 3 deletions src/existing_renamer.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from re import search as regex_search
from os import path
from re import search as regex_search

Check warning on line 2 in src/existing_renamer.py

View check run for this annotation

Codecov / codecov/patch

src/existing_renamer.py#L2

Added line #L2 was not covered by tests
from typing import List

from loguru import logger
from models.batch_rename import BatchRename
from models.rename import Rename

Check warning on line 7 in src/existing_renamer.py

View check run for this annotation

Codecov / codecov/patch

src/existing_renamer.py#L6-L7

Added lines #L6 - L7 were not covered by tests
from pycliarr.api import SonarrCli
from pycliarr.api.base_api import json_data
from batch_rename import BatchRename
from rename import Rename


class ExistingRenamer:
Expand Down
3 changes: 2 additions & 1 deletion src/models/batch_rename.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from typing import List
from rename import Rename

from models.rename import Rename


class BatchRename:
Expand Down
Loading