Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions janitor/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import os
import sys
import socket
from typing import Callable, Dict, Iterable, Union
from typing import Callable, Dict, Iterable, Union, List
from functools import singledispatch, wraps
from warnings import warn

Expand Down Expand Up @@ -213,7 +213,7 @@ def idempotent(func: Callable, df: pd.DataFrame, *args, **kwargs):


def deprecated_kwargs(
*arguments: list[str],
*arguments: List[str],
message: str = (
"The keyword argument '{argument}' of '{func_name}' is deprecated."
),
Expand Down