From e641540dd929131be32635d942f68a290cd4e3d8 Mon Sep 17 00:00:00 2001 From: Alexandru Popenta Date: Mon, 1 Apr 2024 11:46:31 +0300 Subject: [PATCH] initialize module --- testproject_1/__init__.py | 3 +++ testproject_1/empty.py | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 testproject_1/__init__.py diff --git a/testproject_1/__init__.py b/testproject_1/__init__.py new file mode 100644 index 0000000..3df090c --- /dev/null +++ b/testproject_1/__init__.py @@ -0,0 +1,3 @@ +from testproject_1.empty import * + +__all__ =["print_empty"] \ No newline at end of file diff --git a/testproject_1/empty.py b/testproject_1/empty.py index b79fc45..af171a4 100644 --- a/testproject_1/empty.py +++ b/testproject_1/empty.py @@ -1 +1,2 @@ -print('empty file') \ No newline at end of file +def print_empty(): + print("is empty") \ No newline at end of file