Open jkittner opened 1 month ago
Hey, that gave me a syntax warning. I checked the entire repo using...
flake8 pythermalcomfort --select W605
...but that was the only case.
One should probably use something like this instead...
>>> from packaging.version import Version >>> v = Version('1.2.3') >>> v.major 1 >>> v.minor 2 >>> v.micro 3 >>> Version('1.2.3') > Version('1.2.2') True
Hey, that gave me a syntax warning. I checked the entire repo using...
...but that was the only case.
One should probably use something like this instead...