Skip to content

Commit 0ca001f

Browse files
committed
Move config default below
1 parent e3becf6 commit 0ca001f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_releaser/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,10 +287,10 @@ def read_config():
287287
if "jupyter-releaser" in data:
288288
config = data["jupyter-releaser"]
289289

290-
config = config or {}
291290
with open(osp.join(HERE, "schema.json")) as fid:
292291
schema = json.load(fid)
293292

293+
config = config or {}
294294
validator = Validator(schema)
295295
validator.validate(config)
296296
return config

0 commit comments

Comments
 (0)