From eed9aff9920866bcda5e4d09a2b54a6fbf8689f7 Mon Sep 17 00:00:00 2001 From: Jessica Scheick Date: Thu, 14 Dec 2023 11:10:35 -0500 Subject: [PATCH] fix flake8 issues in traffic files --- doc/source/tracking/traffic/traffic_data_mgmt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/tracking/traffic/traffic_data_mgmt.py b/doc/source/tracking/traffic/traffic_data_mgmt.py index 457646a05..0d0a6af9c 100644 --- a/doc/source/tracking/traffic/traffic_data_mgmt.py +++ b/doc/source/tracking/traffic/traffic_data_mgmt.py @@ -1,7 +1,6 @@ import matplotlib.pyplot as plt import os import pandas as pd -import subprocess cwd = os.getcwd() @@ -52,5 +51,6 @@ def update_csv(string): fig.savefig(trafficpath + "plots.svg") -# removing the files should not be necessary here since they're not included in the git commit +# removing the files should not be necessary here +# since they're not included in the git commit # subprocess.run(["rm -rf " + defaultpath[:-1]], shell=True)