Spaces:
Running
Running
Add missing datetime import to support_docs module
Browse files- Import datetime for conversation export timestamp functionality
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
- support_docs.py +1 -0
support_docs.py
CHANGED
@@ -3,6 +3,7 @@ Support documentation module with accordion-style help sections
|
|
3 |
"""
|
4 |
|
5 |
import gradio as gr
|
|
|
6 |
|
7 |
def create_support_docs():
|
8 |
"""Create the support documentation interface with accordion menus"""
|
|
|
3 |
"""
|
4 |
|
5 |
import gradio as gr
|
6 |
+
from datetime import datetime
|
7 |
|
8 |
def create_support_docs():
|
9 |
"""Create the support documentation interface with accordion menus"""
|