Skip to content

Commit 20864ac

Browse files
committed
chore: clean init file
1 parent 8670a0b commit 20864ac

2 files changed

Lines changed: 7 additions & 8 deletions

File tree

static/paper/conference_101719.tex

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
% \usepackage[T2A]{fontenc} % Enable Cyrillic font encoding
2020
% \usepackage[russian]{babel} % Load babel for Russian language support
2121

22-
2322
\definecolor{dkgreen}{rgb}{0,0.6,0}
2423
\definecolor{gray}{rgb}{0.5,0.5,0.5}
2524
\definecolor{mauve}{rgb}{0.58,0,0.82}

universalpython/__init__.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#!/usr/bin/env python
2-
from importlib.metadata import version as get_version, PackageNotFoundError
3-
4-
try:
5-
__version__ = get_version("universalpython")
6-
except PackageNotFoundError:
7-
# When running locally before installation
8-
__version__ = "0.0.0"
92

103
"""
114
UniversalPython.
125
136
Python, but in different human languages.
147
"""
158

9+
from importlib.metadata import version as get_version, PackageNotFoundError
10+
11+
try:
12+
__version__ = get_version("universalpython")
13+
except PackageNotFoundError:
14+
__version__ = "0.0.0"
15+
1616
__author__ = 'Saad Bazaz'
1717
__credits__ = 'Grayhat'
1818
__url__ = 'https://github.com/UniversalPython/UniversalPython'

0 commit comments

Comments
 (0)