From 3dc3e9a9b0fc8c9727f91359814866d3deae6e79 Mon Sep 17 00:00:00 2001 From: Matthias Baumgartner Date: Thu, 15 Dec 2022 16:42:07 +0100 Subject: minor fixes and comments --- bsie/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'bsie/__init__.py') diff --git a/bsie/__init__.py b/bsie/__init__.py index 2b874bd..96e6953 100644 --- a/bsie/__init__.py +++ b/bsie/__init__.py @@ -9,9 +9,8 @@ import collections import typing # constants -version_info = collections.namedtuple('version_info', - ('major', 'minor', 'micro')) \ - (0, 0, 1) +T_VERSION_INFO = collections.namedtuple('T_VERSION_INFO', ('major', 'minor', 'micro')) +version_info = T_VERSION_INFO(0, 0, 1) # exports __all__: typing.Sequence[str] = [] -- cgit v1.2.3