flake8 complains about redefinition.
what should i (and others, who will read this later) do?
def do_work(self, name):
return self.do_work(self.__map[name])
def do_work(self, some_object):
# do the workat first sight it looks like one but that's not what i meant. the parameters have different types but i know that python doesn't know about it.what should i (and others, who will read this later) do?
