From 69a22ebe7450351db803ef04c689887754ef26a8 Mon Sep 17 00:00:00 2001 From: haru2503 Date: Wed, 9 Apr 2025 14:56:13 +0700 Subject: [PATCH] fix: add missing __init__.py to avoid ModuleNotFoundError on infer module --- infer/__init__.py | 0 infer/lib/__init__.py | 0 infer/modules/__init__.py | 0 infer/modules/train/__init__.py | 0 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 infer/__init__.py create mode 100644 infer/lib/__init__.py create mode 100644 infer/modules/__init__.py create mode 100644 infer/modules/train/__init__.py diff --git a/infer/__init__.py b/infer/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/infer/lib/__init__.py b/infer/lib/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/infer/modules/__init__.py b/infer/modules/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/infer/modules/train/__init__.py b/infer/modules/train/__init__.py new file mode 100644 index 000000000..e69de29bb