This commit is contained in:
J. Nick Koston 2023-10-04 14:55:44 -05:00
parent 08526b8524
commit 29a1c113ee
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ class _IndividualSpecifier(BaseSpecifier):
def _coerce_version(self, version: UnparsedVersion) -> ParsedVersion:
if not isinstance(version, (LegacyVersion, Version)):
version = parse(version)
return parse(version)
return version
@property