Commit b2f00b9e authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

updated demo function

parent 93f50ff6
Pipeline #138 passed with stages
in 11 seconds
def some_arbitrary_functions():
def an_arbitrary_functions(*args):
""" an arbitrary function """
print("Hi, this is an arbitrary function.")
for _ in args:
print(_)
from .flip_image import flip_image, read_test_image
from .some_other_modules import some_arbitrary_functions
from .some_other_modules import an_arbitrary_functions
__all__ = ["flip_image", "read_test_image", "some_arbitrary_functions"]
__all__ = ["flip_image", "read_test_image", "an_arbitrary_functions"]
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