Spaces:
Running
Running
Commit
·
4d7acad
1
Parent(s):
539ff69
Updated app.py and database.py with correct imports and create_tables
Browse files- app.py +1 -0
- database.py +1 -0
app.py
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
from fastapi import FastAPI, HTTPException
|
2 |
from pydantic import BaseModel
|
3 |
from typing import Optional
|
|
|
1 |
+
# Commit test to ensure push
|
2 |
from fastapi import FastAPI, HTTPException
|
3 |
from pydantic import BaseModel
|
4 |
from typing import Optional
|
database.py
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
import sqlite3
|
2 |
import random
|
3 |
import string
|
|
|
1 |
+
# Commit test to ensure push
|
2 |
import sqlite3
|
3 |
import random
|
4 |
import string
|