_collapse(s) was moved to collapse(s)
This commit is contained in:
parent
7e575d733e
commit
4152f4d281
1 changed files with 1 additions and 1 deletions
|
@ -51,4 +51,4 @@ class Glob(object):
|
|||
def match(self, s: str) -> bool:
|
||||
return _match(self._pattern, s)
|
||||
def compile(pattern: str) -> Glob:
|
||||
return Glob(_collapse(pattern))
|
||||
return Glob(collapse(pattern))
|
||||
|
|
Loading…
Reference in a new issue