Commit 74ed1b25 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

refactored to demo

parent 50821517
Pipeline #185 failed with stages
in 13 seconds
...@@ -13,7 +13,7 @@ def a_demo_function(*args): ...@@ -13,7 +13,7 @@ def a_demo_function(*args):
-------- --------
>>> a_demo_function(None) >>> a_demo_function(None)
""" """
return None return len(args)
class ADemoClass: class ADemoClass:
......
from .flip_image import flip_image, read_test_image from .flip_image import flip_image, read_test_image
from .some_other_modules import a_demo_function, ADemoClass from .demo import a_demo_function, ADemoClass
__all__ = ["flip_image", "read_test_image", "a_demo_function", "ADemoClass"] __all__ = ["flip_image", "read_test_image", "a_demo_function", "ADemoClass"]
Supports Markdown
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