File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change
1
+ from .base import FacetEntity
1
2
from .case import *
2
3
from .uco import *
3
4
4
- submodules = [v for k , v in globals ().items () if k [:2 ] != "__" ]
5
+ submodules = [v for k , v in globals ().items () if k [:2 ] != "__" and k != "FacetEntity" ]
5
6
6
- directory = dict ()
7
+ directory : dict [ str , type [ FacetEntity ]] = dict ()
7
8
for submodule in submodules :
8
9
directory |= submodule .directory
Original file line number Diff line number Diff line change 2
2
3
3
import cdo_local_uuid
4
4
5
- from case_mapping import case , uco
5
+ from case_mapping import base , case , uco
6
6
7
7
# This is part of enabling non-random UUIDs for the demonstration
8
8
# output. The other part is handled at call time, and can be seen in
@@ -28,7 +28,7 @@ def _next_timestamp() -> datetime:
28
28
29
29
# Generate a case bundle and list to hold investigation items
30
30
bundle = uco .core .Bundle (description = "An Example Case File" )
31
- investigation_items = []
31
+ investigation_items : list [ base . FacetEntity ] = []
32
32
33
33
###################################
34
34
# An item to be added to the case #
You can’t perform that action at this time.
0 commit comments