-
Notifications
You must be signed in to change notification settings - Fork 801
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More explicit warning #98
Conversation
multiagent/__init__.py
Outdated
| "support for installation via pip, and numerous other large quality of life improvements. \nWe " | ||
| "encourage researchers to switch to this maintained version for all purposes other than comparing " | ||
| "to results run on this version of the environments. \n") | ||
| input("Please read the raised warning, then press Enter to continue...\n") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this would trigger (request user to press Enter) every single time you run the code though, right? I agree with everything except for this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this would trigger (request user to press Enter) every single time you run the code though, right? I agree with everything except for this
The issue that led to this was that other writes to stdout drowns out this warning. Alternatively, we could use sleep().
What are your thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could also use environment variables instead/as well as pressing Enter.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
^ Added this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok I can live with that!
(Peter please see my email)