Skip to content

Commit

Permalink
fmt: import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jay-tau committed Jun 19, 2024
1 parent 3f0227b commit 42f1bf3
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions drishti/includes/module.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
#!/usr/bin/env python3

import csv
import datetime
import csv
import time

import pandas as pd
from rich import box
from rich.syntax import Syntax

from rich.syntax import Syntax

from drishti.includes.config import *

'''
Expand Down Expand Up @@ -1907,7 +1903,7 @@ def export_csv(export_dir, filename, jobid=None):


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

with open(filepath, 'w') as f:
w = csv.writer(f)
Expand Down

0 comments on commit 42f1bf3

Please sign in to comment.