Commit ·
843e668
1
Parent(s): 347b758
Fix NameError: missing time import in story_creator.py
Browse files
modules/story_reels/services/story_creator.py
CHANGED
|
@@ -5,6 +5,7 @@ Coordinates TTS, Whisper, Cloudflare, and MoviePy
|
|
| 5 |
import asyncio
|
| 6 |
import logging
|
| 7 |
import uuid
|
|
|
|
| 8 |
from pathlib import Path
|
| 9 |
from typing import Dict, List, Optional
|
| 10 |
from datetime import datetime
|
|
|
|
| 5 |
import asyncio
|
| 6 |
import logging
|
| 7 |
import uuid
|
| 8 |
+
import time
|
| 9 |
from pathlib import Path
|
| 10 |
from typing import Dict, List, Optional
|
| 11 |
from datetime import datetime
|