Skip to content

Commit

Permalink
fix: ignore import type
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNewThinkTank committed Sep 23, 2024
1 parent 2120cf8 commit dbc4836
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/CRUD/insert.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def main() -> None:

import argparse
import logging
from helpers.logger_config import setup_logger, log_running_file
from helpers.logger_config import setup_logger, log_running_file # type: ignore

setup_logger(log_file="insert.log")
log_running_file(__file__)
Expand Down
2 changes: 1 addition & 1 deletion src/model/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def get_data(df, y_col="1RM") -> tuple[list[float], list[float]]:
def main() -> None:
"""Prepare dfs, calc 1RM and do linear regression."""

from helpers.logger_config import setup_logger, log_running_file
from helpers.logger_config import setup_logger, log_running_file # type: ignore

setup_logger(log_file="model.log")
log_running_file(__file__)
Expand Down

0 comments on commit dbc4836

Please sign in to comment.