Skip to content

Commit 4fc47cf

Browse files
style: format code with autopep8
Format code with autopep8 This commit fixes the style issues introduced in 318c2fb according to the output from Autopep8. Details: None
1 parent 318c2fb commit 4fc47cf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

AutomatedDataReporting/Automated_Data_Reporting.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import pandas as pd
22

3+
34
def generate_data_report(data_file_path, report_file_path):
45
df = pd.read_csv(data_file_path)
56

@@ -19,6 +20,7 @@ def generate_data_report(data_file_path, report_file_path):
1920
report_file.write("Column Minimum Values:\n")
2021
report_file.write(str(column_min_values))
2122

23+
2224
if __name__ == "__main__":
2325
data_file_path = "path/to/your/data.csv"
2426
report_file_path = "path/to/your/report.csv"

0 commit comments

Comments
 (0)