From bf142cda5f1c35cff85afc243ceee9123694c2ac Mon Sep 17 00:00:00 2001 From: toravest Date: Fri, 23 May 2025 10:37:08 +0200 Subject: [PATCH] outcomment the print(function.__doc__) --- src/my_package/data.py | 12 ++++++------ src/my_package/date_to_unix.py | 4 ++-- src/my_package/util.py | 14 +++++++------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/my_package/data.py b/src/my_package/data.py index b42fb76..4170ea5 100644 --- a/src/my_package/data.py +++ b/src/my_package/data.py @@ -186,9 +186,9 @@ def extract_city_data_stat(data): return None # This prints the documentation for the functions written inside '''these''' -print(fetch_current_data.__doc__) -print(fetch_time_data.__doc__) -print(fetch_stat_data.__doc__) -print(write_data.__doc__) -print(extract_city_df.__doc__) -print(extract_city_data_stat.__doc__) \ No newline at end of file +# print(fetch_current_data.__doc__) +# print(fetch_time_data.__doc__) +# print(fetch_stat_data.__doc__) +# print(write_data.__doc__) +# print(extract_city_df.__doc__) +# print(extract_city_data_stat.__doc__) \ No newline at end of file diff --git a/src/my_package/date_to_unix.py b/src/my_package/date_to_unix.py index 119d6f5..2520e35 100644 --- a/src/my_package/date_to_unix.py +++ b/src/my_package/date_to_unix.py @@ -66,5 +66,5 @@ def from_unix_timestamp(unix_start, unix_end): return start_from_unix, end_from_unix # This prints the documentation for the functions written inside '''these''' -print(get_unix_timestamp.__doc__) -print(from_unix_timestamp.__doc__) +# print(get_unix_timestamp.__doc__) +# print(from_unix_timestamp.__doc__) diff --git a/src/my_package/util.py b/src/my_package/util.py index 5960005..93ac923 100644 --- a/src/my_package/util.py +++ b/src/my_package/util.py @@ -109,10 +109,10 @@ def get_records(df, city_name): return summary_df, filename, folder # This prints the documentation for the functions written inside '''these''' -print(replace_nordic.__doc__) -print(input_place.__doc__) -print(kelvin_to_celsius.__doc__) -print(ensure_column.__doc__) -print(fill_column_0.__doc__) -print(clean_df.__doc__) -print(get_records.__doc__) \ No newline at end of file +# print(replace_nordic.__doc__) +# print(input_place.__doc__) +# print(kelvin_to_celsius.__doc__) +# print(ensure_column.__doc__) +# print(fill_column_0.__doc__) +# print(clean_df.__doc__) +# print(get_records.__doc__) \ No newline at end of file