Skip to content

Commit 96ef8d8

Browse files
committed
fix types in glob_match
1 parent d77d770 commit 96ef8d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sentry/utils/glob.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33

44
def glob_match(
5-
value: str | None,
6-
pat: str,
5+
value: str | bytes | None,
6+
pat: str | bytes,
77
doublestar: bool = False,
88
ignorecase: bool = False,
99
path_normalize: bool = False,

0 commit comments

Comments
 (0)