Skip to content

Commit

Permalink
lint: remove unused f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Jan 23, 2025
1 parent ef948a6 commit 9de3de6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yolo/model/yolo.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, model_cfg: ModelConfig, class_num: int = 80):
def build_model(self, model_arch: Dict[str, List[Dict[str, Dict[str, Dict]]]]):
self.layer_index = {}
output_dim, layer_idx = [3], 1
logger.info(f":tractor: Building YOLO")
logger.info(":tractor: Building YOLO")
for arch_name in model_arch:
if model_arch[arch_name]:
logger.info(f" :building_construction: Building {arch_name}")
Expand Down

0 comments on commit 9de3de6

Please sign in to comment.