Skip to content

Commit

Permalink
fix: strip typing from fix_filename
Browse files Browse the repository at this point in the history
  • Loading branch information
jorwoods committed Dec 10, 2023
1 parent 76559d4 commit 19a9f51
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions tableauserverclient/helpers/headers.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
from copy import deepcopy
from typing import Any, Generic, Mapping, Optional, TypeVar, Union
from urllib.parse import unquote_plus

T = TypeVar(
"T",
)


def fix_filename(params: Mapping[str, T]) -> Mapping[str, T]:
def fix_filename(params):
if "filename*" not in params:
return params

Expand Down

0 comments on commit 19a9f51

Please sign in to comment.