Skip to content

Commit

Permalink
lint, info
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbannon committed Oct 18, 2023
1 parent 3d648c9 commit 4dd3df4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/ytdl_sub/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
from yt_dlp.utils import sanitize_filename

from ytdl_sub.cli.download_args_parser import DownloadArgsParser
from ytdl_sub.cli.main_args_parser import parser, DEFAULT_CONFIG_FILE_NAME
from ytdl_sub.cli.main_args_parser import DEFAULT_CONFIG_FILE_NAME
from ytdl_sub.cli.main_args_parser import parser
from ytdl_sub.config.config_file import ConfigFile
from ytdl_sub.subscriptions.subscription import Subscription
from ytdl_sub.utils.exceptions import ExperimentalFeatureNotEnabled
Expand Down Expand Up @@ -309,7 +310,7 @@ def main() -> List[Tuple[Subscription, FileHandlerTransactionLog]]:
elif os.path.isfile(DEFAULT_CONFIG_FILE_NAME):
config = ConfigFile.from_file_path(DEFAULT_CONFIG_FILE_NAME)
else:
logger.debug("No config specified, using defaults")
logger.info("No config specified, using defaults")

transaction_logs: List[Tuple[Subscription, FileHandlerTransactionLog]] = []

Expand Down
1 change: 0 additions & 1 deletion src/ytdl_sub/config/config_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@


class ConfigFile(ConfigValidator):

def __init__(self, name: str, value: Any):
super().__init__(name, value)

Expand Down

0 comments on commit 4dd3df4

Please sign in to comment.