We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Consider the following pseudocode (in main):
settings = parser.parse_args() print(f'strict value: {settings.strict}') print(f'strict type: {type(settings.strict)}') print(f'strict boolean: {bool(settings.strict)}')
The following invocation:
(.venv) pgn-tactics-generator$ ./main.py --strict=False
would produce unwanted results:
strict value: False strict type: <class 'str'> strict boolean: True Looking up stockfish-x86_64-bmi2 ...
strict variable value is 'False' (string). bool( evaluates to True...
strict
Probably something similar to
pgn-tactics-generator/main.py
Lines 46 to 48 in f81c421
The text was updated successfully, but these errors were encountered:
The solution looks good to me
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Consider the following pseudocode (in main):
The following invocation:
would produce unwanted results:
strict
variable value is 'False' (string). bool( evaluates to True...Probably something similar to
pgn-tactics-generator/main.py
Lines 46 to 48 in f81c421
The text was updated successfully, but these errors were encountered: