2018-12-14 13:53:15 -08:00

8 lines
208 B
Python

from distutils.core import Command
class clean(Command):
def initialize_options(self: clean) -> None: ...
def finalize_options(self: clean) -> None: ...
def run(self: clean) -> None: ...
...