File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
sdk-platform-java/hermetic_build/common/utils Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 2525
2626
2727def compare_config (
28- baseline_config : GenerationConfig , current_config : GenerationConfig ,
29- force_regenerate_all : bool ,
28+ baseline_config : GenerationConfig ,
29+ current_config : GenerationConfig ,
30+ force_regenerate_all : bool = False ,
3031) -> ConfigChange :
3132 """
3233 Compare two GenerationConfig object and output a mapping from ConfigChange
@@ -51,9 +52,9 @@ def compare_config(
5152 )
5253 if force_regenerate_all :
5354 config_change = LibraryChange (
54- changed_param = "force_regenerate_all" ,
55- current_value = "true" ,
56- )
55+ changed_param = "force_regenerate_all" ,
56+ current_value = "true" ,
57+ )
5758 diff [ChangeType .REPO_LEVEL_CHANGE ].append (config_change )
5859
5960 for baseline_param , current_param in zip (baseline_params , current_params ):
You can’t perform that action at this time.
0 commit comments