Skip to content

Commit 9b05d89

Browse files
committed
Store verbose before running config load
1 parent accc3c9 commit 9b05d89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

earthpy/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def __init__(
8080
verbose=False
8181
):
8282
self.appname = appname
83+
self.verbose = verbose
8384
self.config = self._load_config_files()
8485
self.title = title or self._get_config_parameter("project_title")
8586
self.key = key or self._get_config_parameter("earthpy_data_key")
@@ -89,7 +90,6 @@ def __init__(
8990
or title
9091
or DEFAULT_PROJECT_DIRNAME
9192
).replace(" ", "-").lower()
92-
self.verbose = verbose
9393

9494

9595
# Prepare directories

0 commit comments

Comments
 (0)