Skip to content

Commit

Permalink
remove unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
trim21 committed Aug 21, 2024
1 parent d0b3a86 commit d5712cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/fetch-static-files.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def download_npm_package(
target_file.write_bytes(f.read())


def build_version_filter(major: int, stable: bool = True) -> Callable[[str], bool]:
def build_version_filter(major: int) -> Callable[[str], bool]:
def f(s: str) -> bool:
v = semver.VersionInfo.parse(s)
if v.prerelease:
Expand Down

0 comments on commit d5712cb

Please sign in to comment.