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

updated demo function

parent 93f50ff6
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
def some_arbitrary_functions():
def an_arbitrary_functions(*args):
    """ an arbitrary function """
    print("Hi, this is an arbitrary function.")
    for _ in args:
        print(_)
+2 −2
Original line number Diff line number Diff line
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"]