From eb55a9bf91b4675a0d8588b2a8f4947e48426336 Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Mon, 6 Mar 2023 11:56:13 -0800 Subject: [PATCH] Finish removing deprecation warning --- tap/tap.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tap/tap.py b/tap/tap.py index ef73ca2..2322b3b 100644 --- a/tap/tap.py +++ b/tap/tap.py @@ -333,12 +333,6 @@ def _configure(self) -> None: # Call the user-defined configuration self.configure() - # Support the previous add_arguments interface with a deprecation warning - if self.__class__.add_arguments != Tap.add_arguments: - warn('add_arguments is deprecated and will be removed on January 1st, 2021' - ' please override "configure" instead and call add_argument there. ') - self.add_arguments() - # Add arguments to self self._add_arguments()