mirror of
https://github.com/marceloprates/prettymaps.git
synced 2025-01-16 20:48:13 +01:00
Fixed presets directory path-related error with preset() function
This commit is contained in:
parent
c70f32a8e6
commit
e11b7e6289
@ -772,11 +772,7 @@ def presets():
|
||||
|
||||
|
||||
def preset(name):
|
||||
base_path = os.path.abspath(os.path.join(
|
||||
os.path.dirname(prettymaps.__file__),
|
||||
os.path.pardir
|
||||
))
|
||||
with open(os.path.join(base_path, "presets", f"{name}.json"), "r") as f:
|
||||
with open(os.path.join(presets_directory(), f"{name}.json"), "r") as f:
|
||||
# Load params from JSON file
|
||||
params = json.load(f)
|
||||
return Preset(params)
|
||||
|
Loading…
x
Reference in New Issue
Block a user