From 81d1e5ca61fffb21bb27cb39bdf1a7f91bc8ed06 Mon Sep 17 00:00:00 2001 From: mariosasko Date: Sun, 1 Oct 2023 20:01:41 +0200 Subject: [PATCH] Fix mypy error --- fsspec/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsspec/utils.py b/fsspec/utils.py index 59a76cc95..d7981957d 100644 --- a/fsspec/utils.py +++ b/fsspec/utils.py @@ -649,7 +649,7 @@ def _translate(pat, STAR, QUESTION_MARK): return res -def glob_translate(pat: str) -> str: +def glob_translate(pat): # Copied from: https://github.com/python/cpython/pull/106703. # The keyword parameters' values are fixed to: # recursive=True, include_hidden=True, seps=None