Skip to content

Commit ff2e4db

Browse files
committed
Fix #224: Replace super() call
In class clean, replace super(CleanCommand, self).run() with CleanCommand.run(self) Co-authored-by: Dennis Menschel <menschel-d>
1 parent 3f92aa5 commit ff2e4db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def run_tests(self):
3838

3939
class Clean(CleanCommand):
4040
def run(self):
41-
super(CleanCommand, self).run()
41+
CleanCommand.run(self)
4242
delete_in_root = ["build", ".cache", "dist", ".eggs", "*.egg-info", ".tox"]
4343
delete_everywhere = ["__pycache__", "*.pyc"]
4444
for candidate in delete_in_root:

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy