ianfhunter / GNOLL

Attribute defined outside __init__ PYL-W0201
Anti-pattern
Minor
5 months ago2 years old
Attribute 'title' defined outside __init__
 40        })
 41
 42    def benchmark(self, title):
 43        self.title = title 44        for c in self.competitors:
 45            print(f"Benchmark::{c['name']}")
 46
Attribute 'root_is_pure' defined outside __init__
14
15        def finalize_options(self):
16            _bdist_wheel.finalize_options(self)
17            self.root_is_pure = False18
19except ImportError:
20    bdist_wheel = None