Skip to content

Commit

Permalink
Make mypy even happier.
Browse files Browse the repository at this point in the history
  • Loading branch information
hiker committed Feb 19, 2025
1 parent 64045f0 commit 71a1cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/fab/tools/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def get_hash(self) -> int:
return (zlib.crc32(self.name.encode()) +
zlib.crc32(self.get_version_string().encode()))

def get_flags(self, profile: Optional[str] = None) -> list[str]:
def get_flags(self, profile: Optional[str] = None) -> List[str]:
'''Determines the flags to be used. We should always add $FFLAGS,so
we always add them in here.
Expand Down

0 comments on commit 71a1cea

Please sign in to comment.