Fill Algorithm optimisations (somewhat minor, but easy pickings)

This commit is contained in:
Fabian Dill
2020-08-14 00:34:41 +02:00
parent 2a2452e30f
commit df6ee1a08b
4 changed files with 49 additions and 26 deletions

View File

@@ -6,7 +6,7 @@ def tuplize_version(version: str) -> typing.Tuple[int, ...]:
return tuple(int(piece, 10) for piece in version.split("."))
__version__ = "2.5.0"
__version__ = "2.5.1"
_version_tuple = tuplize_version(__version__)
import os