We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
timecode
1 parent c4decce commit 71406d7Copy full SHA for 71406d7
3 files changed
src/timecode/__init__.py
@@ -1,2 +1,2 @@
1
-from timecode._version import __version__
2
-from timecode.timecode import Timecode, TimecodeError
+from timecode._version import __version__ # noqa: F401
+from timecode.timecode import Timecode, TimecodeError # noqa: F401
src/timecode/_version.py
@@ -6,7 +6,7 @@
6
_VERSION = None
7
_VERSION_FILE = os.path.join(os.path.dirname(__file__), "VERSION")
8
if os.path.isfile(_VERSION_FILE):
9
- with open(_VERSION_FILE, "r") as _version_file:
+ with open(_VERSION_FILE) as _version_file:
10
_VERSION = _version_file.read().strip()
11
__version__ = _VERSION or "0.0.0"
12
"""str: The version of the package."""
0 commit comments