From d61b62e973a9aab6a84574991524b3696a5f4183 Mon Sep 17 00:00:00 2001 From: niten Date: Sat, 7 Jan 2023 16:46:52 -0800 Subject: [PATCH] Add module string, sigh --- src/detector.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/detector.py b/src/detector.py index 26567be..187fc99 100644 --- a/src/detector.py +++ b/src/detector.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +"""Detect objects in images using YOLOv3.""" import cv2 as cv import numpy as np @@ -6,6 +6,7 @@ import sys import shutil from os import path import hashlib +from dataclasses import dataclass import tempfile from pathlib import Path