Skip to content

Commit 19a9f51

Browse files
committed
fix: strip typing from fix_filename
1 parent 76559d4 commit 19a9f51

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tableauserverclient/helpers/headers.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
from copy import deepcopy
2-
from typing import Any, Generic, Mapping, Optional, TypeVar, Union
32
from urllib.parse import unquote_plus
43

5-
T = TypeVar(
6-
"T",
7-
)
84

9-
10-
def fix_filename(params: Mapping[str, T]) -> Mapping[str, T]:
5+
def fix_filename(params):
116
if "filename*" not in params:
127
return params
138

0 commit comments

Comments
 (0)