Skip to content

Commit

Permalink
Fix: Import __version__ into pontos.version again
Browse files Browse the repository at this point in the history
It should be possible to do `from pontos.version import __version__`.
  • Loading branch information
bjoernricks committed Mar 8, 2023
1 parent 1f97f89 commit 82f2e34
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pontos/version/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from .__version__ import __version__
from .main import main

__all__ = ("main",)
__all__ = (
"main",
"__version__",
)

0 comments on commit 82f2e34

Please sign in to comment.