Source code for harp.utils.config.toml

import tomllib


[docs] def load(filename): with open(filename, "rb") as f: return tomllib.load(f)