We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c143fa commit 29b1baeCopy full SHA for 29b1bae
1 file changed
setup.py
@@ -122,7 +122,7 @@ class install(_install):
122
123
def run(self):
124
self.run_command("build")
125
- _install.run(self)
+ super().run()
126
127
128
cmdclass = {"build": build, "install": install}
@@ -144,7 +144,7 @@ def run(self):
144
145
class BuildDocMan(BuildDoc):
146
def initialize_options(self):
147
- BuildDoc.initialize_options(self)
+ super().initialize_options()
148
self.builder = "man"
149
self.source_dir = "doc/sphinx/source"
150
self.build_dir = "build"
0 commit comments