We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 738d011 commit c477c9bCopy full SHA for c477c9b
1 file changed
code_counting/__main__.py
@@ -3,14 +3,14 @@
3
import logging
4
import os
5
6
+from code_counting.lang_controller import LanguagesController
7
+from code_counting.util import explore_folder
8
+
9
# Yea, I don't know either. If I don't do it, python starts informing me that lang_controller is not a module
10
CURRENT_PATH = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
11
12
sys.path.append(CURRENT_PATH)
13
-from code_counting.lang_controller import LanguagesController
-from code_counting.util import explore_folder
-
14
logging.getLogger().setLevel(logging.INFO)
15
16
0 commit comments