Skip to content

Commit

Permalink
Merge branch 'setup-sqlite-database' of github.com-work:groundlight/e…
Browse files Browse the repository at this point in the history
…dge-endpoint into setup-sqlite-database
  • Loading branch information
blaise-muhirwa committed Oct 31, 2023
2 parents dd72807 + 64c3251 commit b1bd890
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/core/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ class DetectorDeployment(Base):
"""

__tablename__ = "detector_deployments"

id = Column(Integer, primary_key=True)
detector_id = Column(String(44), unique=True, nullable=False, index=True, comment="Detector ID")
api_token = Column(String(44), nullable=False, comment="API token")
Expand Down
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging
import os
from typing import List, Dict
from typing import Dict, List

from apscheduler.schedulers.asyncio import AsyncIOScheduler
from fastapi import FastAPI
Expand Down

0 comments on commit b1bd890

Please sign in to comment.