Skip to content

Commit

Permalink
Merge pull request #134 from roboflow/fix-env-error
Browse files Browse the repository at this point in the history
  • Loading branch information
mtraor3 authored Apr 1, 2023
2 parents 3ea6260 + f105cd6 commit ae7634a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roboflow/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_conditional_configuration_variable(key, default):
# default configuration location
conf_location = os.getenv(
"ROBOFLOW_CONFIG_DIR",
default=os.getenv("HOME") + "/.config/roboflow/config.json",
default=os.path.expanduser("~") + "/.config/roboflow/config.json",
)

# read config file for roboflow if logged in from python or CLI
Expand Down

0 comments on commit ae7634a

Please sign in to comment.