We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1408dcf commit d462155Copy full SHA for d462155
1 file changed
odml/info.py
@@ -1,9 +1,9 @@
1
import os
2
import json
3
4
-here = os.path.dirname(__file__)
+INSTALL_PATH = os.path.dirname(__file__)
5
6
-with open(os.path.join(here, "info.json")) as infofile:
+with open(os.path.join(INSTALL_PATH, "info.json")) as infofile:
7
infodict = json.load(infofile)
8
9
VERSION = infodict["VERSION"]
0 commit comments