ianfhunter / GNOLL

Missing module/function docstring PY-D0003
Documentation
Minor
5 months ago2 years old
Docstring missing for finalize_options
12
13    class bdist_wheel(_bdist_wheel):
14
15        def finalize_options(self):16            _bdist_wheel.finalize_options(self)
17            self.root_is_pure = False
18
Docstring missing for in_wsl
 3from setuptools import setup
 4
 5
 6def in_wsl() -> bool: 7    return "microsoft-standard" in uname().release
 8
 9