Skip to content

Commit a6f7484

Browse files
authored
Redundant abstractmethod run in setuptools.command.setopt.option_base (#4549)
1 parent b585088 commit a6f7484

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

setuptools/command/setopt.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from abc import ABC, abstractmethod
1+
from abc import ABC
22
from distutils.util import convert_path
33
from distutils import log
44
from distutils.errors import DistutilsOptionError
@@ -104,10 +104,6 @@ def finalize_options(self):
104104
)
105105
(self.filename,) = filenames
106106

107-
@abstractmethod
108-
def run(self) -> None:
109-
raise NotImplementedError
110-
111107

112108
class setopt(option_base):
113109
"""Save command-line options to a file"""

0 commit comments

Comments
 (0)