Skip to content

Commit

Permalink
Update conf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Jul 17, 2024
1 parent f06f9b5 commit f7e8e9b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyngrok/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@
_config_rel_path = os.path.join("AppData", "Local", "ngrok")
else:
_config_rel_path = os.path.join(".config", "ngrok")
DEFAULT_NGROK_CONFIG_PATH = os.path.join(os.path.expanduser("~"), _config_rel_path, "ngrok.yml")
DEFAULT_NGROK_PATH = os.path.join(os.path.expanduser("~"), _config_rel_path, get_ngrok_bin())
DEFAULT_NGROK_DIR = os.path.join(os.path.expanduser("~"), _config_rel_path)
DEFAULT_NGROK_CONFIG_PATH = os.path.join(DEFAULT_NGROK_DIR, "ngrok.yml")
DEFAULT_NGROK_PATH = os.path.join(DEFAULT_NGROK_DIR, get_ngrok_bin())


class PyngrokConfig:
Expand Down

0 comments on commit f7e8e9b

Please sign in to comment.