mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-14 11:06:13 +05:00
4 lines
202 B
Python
4 lines
202 B
Python
# ruff: noqa
|
|
def get_host_immutable_info(host_info: dict[str, Any]) -> dict[str, Any]:
|
|
return {key: value for key, value in host_info.items() if key in ["guid", "net_mac", "os_family", "cpu_arch"]}
|