Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
sashacmc committed Nov 29, 2022
1 parent 7b00e67 commit ffc3ab9
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions photo_importer/run.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
#!/usr/bin/python3

import os
import sys
import logging
import argparse
import threading
import progressbar

sys.path.insert(0, os.path.abspath('..'))

from photo_importer import log # noqa
from photo_importer import config # noqa
from photo_importer import importer # noqa
from . import log
from . import config
from . import importer


class ProgressBar(threading.Thread):
Expand Down

0 comments on commit ffc3ab9

Please sign in to comment.