File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -435,9 +435,10 @@ class DataCollectionGroupModel(SQLModel): # type: ignore
435435 )
436436
437437
438- class DataCollectionGroup (DataCollectionGroupModel , table = True ):
438+ class DataCollectionGroup (DataCollectionGroupModel , table = True ): # type: ignore
439439 pass
440440
441+
441442class NotificationParameter (SQLModel , table = True ): # type: ignore
442443 id : Optional [int ] = Field (default = None , primary_key = True )
443444 dcg_id : int = Field (foreign_key = "datacollectiongroup.id" )
Original file line number Diff line number Diff line change 77from murfey .util import db
88
99
10- class DataCollectionGroup (db .DataCollectionGroupModel , table = True ):
10+ class DataCollectionGroup (db .DataCollectionGroupModel , table = True ): # type: ignore
1111 grid_squares : List ["GridSquare" ] = Relationship (
1212 back_populates = "data_collection_group" ,
1313 sa_relationship_kwargs = {"cascade" : "delete" },
You can’t perform that action at this time.
0 commit comments