Skip to content

Commit

Permalink
Redundant abstractmethod run in `setuptools.command.setopt.option_bas…
Browse files Browse the repository at this point in the history
…e` (#4549)
  • Loading branch information
Avasam authored Aug 9, 2024
1 parent b585088 commit a6f7484
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions setuptools/command/setopt.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from abc import ABC, abstractmethod
from abc import ABC
from distutils.util import convert_path
from distutils import log
from distutils.errors import DistutilsOptionError
Expand Down Expand Up @@ -104,10 +104,6 @@ def finalize_options(self):
)
(self.filename,) = filenames

@abstractmethod
def run(self) -> None:
raise NotImplementedError


class setopt(option_base):
"""Save command-line options to a file"""
Expand Down

0 comments on commit a6f7484

Please sign in to comment.