Skip to content

Commit

Permalink
outcomment the print(function.__doc__)
Browse files Browse the repository at this point in the history
  • Loading branch information
toravest committed May 23, 2025
1 parent b828e3c commit bf142cd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions src/my_package/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
# 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__)
4 changes: 2 additions & 2 deletions src/my_package/date_to_unix.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
14 changes: 7 additions & 7 deletions src/my_package/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
# 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__)

0 comments on commit bf142cd

Please sign in to comment.