Revision 6210494748e601c23cf6edf9ff1ae5adf47a3c4d authored by Madian Khabsa on 11 March 2021, 03:13:27 UTC, committed by Facebook GitHub Bot on 11 March 2021, 03:15:10 UTC
Summary:
Pull Request resolved: https://github.com/facebookresearch/mmf/pull/808

The current parser would fail if the opt value has `=` which is needed when providing filters. This diff takes the first occurrence of  `=` as the separator

Reviewed By: apsdehal

Differential Revision: D26955390

fbshipit-source-id: cedfb358de254a0c6d2a88744a0660984b045f47
1 parent c78a408
Raw File
.flake8
# This is an example .flake8 config used when developing *Black* itself.

[flake8]
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9
ignore = E203, E266, C901, C408, W503
back to top