commit | 50483b477b32a88bf852b212d1f7a8dda66472af | [log] [tgz] |
---|---|---|
author | Mohammed Naser <mnaser@vexxhost.com> | Thu Sep 15 20:47:37 2022 -0400 |
committer | Mohammed Naser <mnaser@vexxhost.com> | Mon Sep 19 19:29:15 2022 -0400 |
tree | 07b16c4b7d25148e1edb6fd1bfa6fd11d3d74d89 | |
parent | e1b53a4c0e13f4af52f6a61cdf1130f771df2b65 [diff] |
fix: fix tomli import
diff --git a/atmosphere/models/conf.py b/atmosphere/models/conf.py index d706edb..856148a 100644 --- a/atmosphere/models/conf.py +++ b/atmosphere/models/conf.py
@@ -29,7 +29,7 @@ def from_toml(data): - cfg = AtmosphereConfig(toml.loads(data), validate=True) + cfg = AtmosphereConfig(tomli.loads(data), validate=True) cfg.validate() return cfg