optimize imports
This commit is contained in:
parent
d952a22591
commit
fc7c77e5d7
2 changed files with 4 additions and 5 deletions
|
@ -1,12 +1,11 @@
|
|||
#!/usr/bin/python3
|
||||
from pathlib import Path
|
||||
import yaml
|
||||
import warnings
|
||||
|
||||
from lectures import Lectures
|
||||
from notes import Notes
|
||||
import yaml
|
||||
|
||||
from config import ROOT, CURRENT_COURSE_ROOT, CURRENT_COURSE_SYMLINK, CURRENT_COURSE_WATCH_FILE, COURSE_IGNORE_FILE, \
|
||||
COURSE_INFO_FILE_NAME, FALLBACK_COURSE_INFO_FILE
|
||||
from notes import Notes
|
||||
from utils import merge_dictionaries
|
||||
|
||||
|
||||
|
|
|
@ -7,8 +7,8 @@ from datetime import datetime
|
|||
|
||||
from config import DATE_FORMAT, LOCALE, DEFAULT_NEW_LECTURE_HEADER, DEFAULT_LECTURE_SEARCH_REGEX, \
|
||||
DEFAULT_NEW_LECTURE_TITLE
|
||||
from utils import get_week
|
||||
from edit import edit
|
||||
from utils import get_week
|
||||
|
||||
# TODO
|
||||
locale.setlocale(locale.LC_TIME, LOCALE)
|
||||
|
|
Loading…
Reference in a new issue