[code-quality] Bad coding style?
Thomas Heller
theller at ctypes.org
Thu Feb 6 19:51:09 CET 2014
I sometimes have code like this:
class Foo:
def spam(self):
....
from somewhere import method
from somewhere import CONSTANT
def blah(self):
....
where CONSTANT defines a class attribute, anbd method
is a method that I would like to call like any other
methor (self.spam(), or self.blah()).
This works nicely and is a compact coding style, however
frosted complains about unused imports.
Should I fix my coding habits, or should frosted by fixed?
Thanks,
Thomas
More information about the code-quality
mailing list