Skip to content

Commit

Permalink
修复python低版本import问题
Browse files Browse the repository at this point in the history
  • Loading branch information
0xHJK committed Jan 24, 2019
1 parent 9ef059a commit d6888cb
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
12 changes: 12 additions & 0 deletions core/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env python
#-*- coding:utf-8 _*-
"""
@author: HJK
@file: __init__.py
@time: 2019-01-24
"""


12 changes: 12 additions & 0 deletions core/extractors/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env python
#-*- coding:utf-8 _*-
"""
@author: HJK
@file: __init__.py
@time: 2019-01-24
"""


1 change: 1 addition & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import threading
import traceback
import glovar
from core import extractors
from core.common import music_list_merge
from core.exceptions import *
from utils import echo
Expand Down
12 changes: 12 additions & 0 deletions utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env python
#-*- coding:utf-8 _*-
"""
@author: HJK
@file: __init__.py
@time: 2019-01-24
"""


0 comments on commit d6888cb

Please sign in to comment.