File tree Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Expand file tree Collapse file tree 1 file changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -784,22 +784,20 @@ def construct_container_object(
784
784
Returns:
785
785
dict: container object
786
786
"""
787
+
788
+ obj .update (
789
+ {
790
+ "Framework" : framework ,
791
+ "FrameworkVersion" : framework_version ,
792
+ "NearestModelName" : nearest_model_name ,
793
+ }
794
+ )
795
+
787
796
if data_input_configuration is not None :
788
797
obj .update (
789
798
{
790
- "Framework" : framework ,
791
- "FrameworkVersion" : framework_version ,
792
- "NearestModelName" : nearest_model_name ,
793
799
"ModelInput" : {
794
800
"DataInputConfig" : data_input_configuration ,
795
801
},
796
802
}
797
803
)
798
- else :
799
- obj .update (
800
- {
801
- "Framework" : framework ,
802
- "FrameworkVersion" : framework_version ,
803
- "NearestModelName" : nearest_model_name ,
804
- }
805
- )
You can’t perform that action at this time.
0 commit comments