mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 23:05:00 +00:00
fix: simplify version check for dev mode
This commit is contained in:
parent
eb92fa4f88
commit
554fa98c48
1 changed files with 2 additions and 4 deletions
|
@ -195,10 +195,8 @@ def launch_gui(args):
|
|||
"--server.runOnSave=false",
|
||||
]
|
||||
|
||||
try:
|
||||
is_dev = "-dev" in str(__version__)
|
||||
except TypeError:
|
||||
is_dev = False
|
||||
# https://github.com/Aider-AI/aider/issues/2193
|
||||
is_dev = "-dev" in str(__version__)
|
||||
|
||||
if is_dev:
|
||||
print("Watching for file changes.")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue