Skip to content

Commit caaa376

Browse files
committed
LRU cache default paramaters for python 3.7
1 parent 82892d6 commit caaa376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure-kusto-data/azure/kusto/data/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Converter = Optional[Dict[str, Union[str, Callable[[str, "pd.DataFrame"], "pd.Series"]]]]
1212

1313

14-
@lru_cache
14+
@lru_cache(maxsize=128, typed=False)
1515
def default_dict() -> Dict[str, Callable[[str, "pd.DataFrame"], "pd.Series"]]:
1616
import pandas as pd
1717

0 commit comments

Comments
 (0)