Skip to content

Commit 42f1bf3

Browse files
committed
fmt: import statements
1 parent 3f0227b commit 42f1bf3

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

drishti/includes/module.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
#!/usr/bin/env python3
22

3-
import csv
43
import datetime
4+
import csv
55
import time
6-
76
import pandas as pd
87
from rich import box
98
from rich.syntax import Syntax
10-
11-
from rich.syntax import Syntax
12-
139
from drishti.includes.config import *
1410

1511
'''
@@ -1907,7 +1903,7 @@ def export_csv(export_dir, filename, jobid=None):
19071903

19081904

19091905
os.makedirs(export_dir, exist_ok=True) # Ensure export directory exists
1910-
filepath = os.path.join(export_dir, f"{filename}-summary.csv")
1906+
filepath = os.path.join(export_dir, f"{filename}.csv")
19111907

19121908
with open(filepath, 'w') as f:
19131909
w = csv.writer(f)

0 commit comments

Comments
 (0)