From 941cbfd398b0eff097b353181799b2f45bde9084 Mon Sep 17 00:00:00 2001 From: Avasam Date: Thu, 8 Aug 2024 14:31:39 -0400 Subject: [PATCH] Redundant abstractmethod run in `setuptools.command.setopt.option_base` --- setuptools/command/setopt.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/setuptools/command/setopt.py b/setuptools/command/setopt.py index 0cd67c0f67..3d8181d2fa 100644 --- a/setuptools/command/setopt.py +++ b/setuptools/command/setopt.py @@ -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 @@ -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"""