Skip to content

Commit

Permalink
feat(google): remove logging_interval depreaction
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-W committed Feb 16, 2024
1 parent 639e693 commit f99ec6b
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,5 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
DeprecationWarning,
stacklevel=2,
)
if kwargs.get("logging_interval"):
warnings.warn(
("Argument 'loggin_interval' has been deprecated"),
DeprecationWarning,
stacklevel=2,
)
kwargs.pop("logging_interval")

super().__init__(*args, deferrable=True, **kwargs)

0 comments on commit f99ec6b

Please sign in to comment.