Skip to content

Commit ef9789c

Browse files
author
Nathaniel Chen
committed
Refactor import statements in batch_analysis.py
Moved the import of tqdm to maintain consistency and improve code organization.
1 parent 7b3af2f commit ef9789c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tokeye/analysis/batch_analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
import numpy as np
66
import torch
77
import torch.nn as nn
8-
from tqdm.auto import tqdm
98

109
# Import model loading function from the analyze module
1110
from TokEye.app.analyze.load import model_load
11+
from tqdm.auto import tqdm
1212

1313
# Configure logging
1414
logging.basicConfig(

0 commit comments

Comments
 (0)