mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
9 lines
216 B
Python
9 lines
216 B
Python
class AbstractBaseResponseHandler:
|
|
def me<caret>thod(self):
|
|
if self.response:
|
|
return self.code
|
|
|
|
|
|
def func(abstract_base_response_handler, a):
|
|
AbstractBaseResponseHandler().method()
|