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
We can now replace comparisons like
env.get('MLC_SAVE_CONSOLE_LOG', True)).lower() not in ["no", "false", "0"]:
with
not is_false(env.get('MLC_SAVE_CONSOLE_LOG', True)):
as we have the functions is_false and is_true in the utils.py. It'll be good to clean all such usages in customize.py files.
is_false
is_true
utils.py
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We can now replace comparisons like
with
as we have the functions
is_false
andis_true
in theutils.py
. It'll be good to clean all such usages in customize.py files.The text was updated successfully, but these errors were encountered: