Skip to content

Commit

Permalink
chore: remove dead code in manage.py
Browse files Browse the repository at this point in the history
This commit helps clean up unused imports such as `pdb` and deadcode
utilized during a debugging process
  • Loading branch information
50-Course committed May 28, 2024
1 parent 3520f5e commit fc82ad9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions backend/paycheck_core/src/paycheck/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ def main():
"""Run administrative tasks."""
import pdb

project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
src_root = os.path.join(project_root, "src")
# project_root = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
# src_root = os.path.join(project_root, "src")
#
# if src_root not in sys.path:
# sys.path.append(src_root)

if src_root not in sys.path:
sys.path.append(src_root)
Expand Down

0 comments on commit fc82ad9

Please sign in to comment.