Merge pull request #106 from jabez007/merge_config_hostname

merge args.host into system_config['hostname']
This commit is contained in:
TC² 2025-01-02 20:09:30 -05:00 committed by GitHub
commit c0003ec536
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -76,7 +76,7 @@ def merge_config(system_config:dict[str, Any], args:argparse.Namespace) -> dict[
system_config['port'] = args.port
if args.host is not None:
system_config['host'] = args.host
system_config['hostname'] = args.host
return system_config