Commit ed9de3f9 authored by Brewer, Wes's avatar Brewer, Wes
Browse files

Clean up a few debug print statements

parent 81419466
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -112,7 +112,6 @@ class LayoutManager:
                convert_seconds(job.running_time)
            ]
            # Add the row with the 'white' style applied to the whole row
            print(row)
            table.add_row(*row, style="white")

        # Update the layout
+0 −3
Original line number Diff line number Diff line
@@ -254,9 +254,6 @@ def extract_data_csv(fileName, skiprows, header):
    df = pd.read_csv(fileName, skiprows=skiprows, header=header)
    df = df.rename(columns={df.columns[0]: 'time'})
    df = df.dropna()
    #print("Column headings:")
    #print(df.columns.tolist())
    #print(df.head())
    return df

def resampledf(df, time_resampled):