mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* Fix rewriter * lint * rename function and update docstring * use is class * Update docstring
14 lines
148 B
Python
14 lines
148 B
Python
# Copyright (c) OpenMMLab. All rights reserved.
|
|
def func():
|
|
return 1
|
|
|
|
|
|
class C:
|
|
|
|
def method(self):
|
|
return 1
|
|
|
|
|
|
class C2(C):
|
|
pass
|