Unverified Commit 05bdd162 authored by Zaida Zhou's avatar Zaida Zhou Committed by GitHub
Browse files

Fix lint (#1984)

parent 4ea914ed
...@@ -82,7 +82,7 @@ def test_is_module_wrapper(): ...@@ -82,7 +82,7 @@ def test_is_module_wrapper():
'mmpose module wrapper', parent=MODULE_WRAPPERS, scope='mmpose') 'mmpose module wrapper', parent=MODULE_WRAPPERS, scope='mmpose')
@MMRAZOR_MODULE_WRAPPERS.register_module() @MMRAZOR_MODULE_WRAPPERS.register_module()
class ModuleWrapperInRazor(object): class ModuleWrapperInRazor:
def __init__(self, module): def __init__(self, module):
self.module = module self.module = module
...@@ -91,7 +91,7 @@ def test_is_module_wrapper(): ...@@ -91,7 +91,7 @@ def test_is_module_wrapper():
return self.module(*args, **kwargs) return self.module(*args, **kwargs)
@MMPOSE_MODULE_WRAPPERS.register_module() @MMPOSE_MODULE_WRAPPERS.register_module()
class ModuleWrapperInPose(object): class ModuleWrapperInPose:
def __init__(self, module): def __init__(self, module):
self.module = module self.module = module
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment