Skip to content

Commit

Permalink
Move config_helper
Browse files Browse the repository at this point in the history
  • Loading branch information
c0d3d3v committed Feb 11, 2020
1 parent c96dc38 commit ccfa81b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


from utils.logger import Log
from utils.config_helper import ConfigHelper
from config_service.config_helper import ConfigHelper
from moodle_connector.moodle_service import MoodleService
from download_service.download_service import DownloadService
from notification_services.mail.mail_service import MailService
Expand Down
2 changes: 1 addition & 1 deletion moodle_connector/moodle_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from getpass import getpass
from urllib.parse import urlparse

from utils.config_helper import ConfigHelper
from config_service.config_helper import ConfigHelper
from state_recorder.course import Course
from state_recorder.state_recorder import StateRecorder
from moodle_connector import login_helper
Expand Down
2 changes: 1 addition & 1 deletion notification_services/notification_service.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from abc import ABCMeta, abstractmethod

from state_recorder.course import Course
from utils.config_helper import ConfigHelper
from config_service.config_helper import ConfigHelper


class NotificationService:
Expand Down

0 comments on commit ccfa81b

Please sign in to comment.