10 lines
237 B
Python
10 lines
237 B
Python
from config.dtype import ArchMgrConfig
|
|
|
|
|
|
def merge_configs(config: ArchMgrConfig, new_config: ArchMgrConfig) -> ArchMgrConfig:
|
|
if len(new_config) == 0 or len(config) == 0:
|
|
return config
|
|
|
|
# Merge configs
|
|
return config
|