Skip to content

Commit

Permalink
feat(create_vis_dbs.py): Needed to add more tables.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbeyer committed Oct 15, 2023
1 parent baf5aa4 commit dae520d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/vipersci/vis/db/create_vis_dbs.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@
from vipersci.vis.db.image_requests import ImageRequest
from vipersci.vis.db.image_stats import ImageStats
from vipersci.vis.db.image_tags import ImageTag, taglist
from vipersci.vis.db.junc_image_pano import JuncImagePano
from vipersci.vis.db.junc_image_record_tags import JuncImageRecordTag
from vipersci.vis.db.junc_image_req_ldst import JuncImageRequestLDST
from vipersci.vis.db.ldst import LDST
from vipersci.vis.db.ldst_verification import LDSTVerification
from vipersci.vis.db.light_records import LightRecord

# from vipersci.vis.db.pano_reocrds import PanoRecord
from vipersci.vis.db.pano_records import PanoRecord

# As new tables are defined, their Classes must be imported above, and
# then also added to this tuple:
Expand All @@ -57,11 +57,13 @@
ImageRequest,
ImageStats,
ImageTag,
JuncImagePano,
JuncImageRecordTag,
JuncImageRequestLDST,
LDST,
LDSTVerification,
LightRecord,
PanoRecord,
)

logger = logging.getLogger(__name__)
Expand Down

0 comments on commit dae520d

Please sign in to comment.