We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a3bc67 commit 9af5c27Copy full SHA for 9af5c27
pythonrepo/__init__.py
@@ -42,6 +42,4 @@
42
43
44
if __name__ in '__main__':
45
- if pythonrepo.__name__ is None:
46
- raise ImportError(str("Failed to open pythonrepo"))
47
- pythonrepo.main(sys.argv[1:])
+ pass
pythonrepo/pythonrepo.py
@@ -34,6 +34,10 @@
34
raise baton
35
36
37
+from . import __version__ as __version__
38
+"""The version of this program."""
39
+
40
41
__prog__ = str(__module__)
"""The name of this program is PythonRepo"""
@@ -50,11 +54,6 @@
50
54
"""Contains the short epilog of the program CLI help text."""
51
55
52
56
53
-from . import __version__ as __version__
-# __version__ = """1.1.4"""
-"""The version of this program."""
-
57
58
# Add your functions here
59
60
0 commit comments