Skip to content

Commit

Permalink
Restore python 3.8 support
Browse files Browse the repository at this point in the history
Fixes #184
  • Loading branch information
cpsauer committed Jun 28, 2024
1 parent a14ad3a commit 1e08f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion refresh.template.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ def _file_is_in_main_workspace_and_not_external(file_str: str):

# some/file.h, but not external/some/file.h
# also allows for things like bazel-out/generated/file.h
if file_path.is_relative_to(pathlib.PurePath("external")):
if _is_relative_to(file_path, pathlib.PurePath("external")):
return False

# ... but, ignore files in e.g. bazel-out/<configuration>/bin/external/
Expand Down

0 comments on commit 1e08f8e

Please sign in to comment.