10 lines
124 B
Python
10 lines
124 B
Python
|
# Copyright (c) OpenMMLab. All rights reserved.
|
||
|
def func():
|
||
|
return 1
|
||
|
|
||
|
|
||
|
class C:
|
||
|
|
||
|
def method(self):
|
||
|
return 1
|