fix stray typo

This commit is contained in:
Eli Schwartz 2021-12-05 11:30:20 -05:00
parent 5b7d4f8bd3
commit a21c7d54fb
No known key found for this signature in database
GPG Key ID: CEB167EFB5722BD6
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ class FeatureCheckBase(metaclass=abc.ABCMeta):
@staticmethod
@abc.abstractmethod
def check_version(target_version: str, feature_Version: str) -> bool:
def check_version(target_version: str, feature_version: str) -> bool:
pass
def use(self, subproject: str) -> None: