Revision 5bb6f50a9692e78200ad323f0346a54a16338817 authored by Amanpreet Singh on 16 April 2021, 07:50:29 UTC, committed by Facebook GitHub Bot on 16 April 2021, 07:51:11 UTC
Summary:
Regression caused by https://github.com/facebookresearch/mmf/commit/868c5892cf7607cdeca3df386fa7810ca1ba9b67
Fixes https://github.com/facebookresearch/mmf/issues/876

Pull Request resolved: https://github.com/facebookresearch/mmf/pull/880

Test Plan: pytest

Reviewed By: BruceChaun

Differential Revision: D27812170

Pulled By: apsdehal

fbshipit-source-id: 09f1fcf9d7297c5b02bfb984ffcd330b3ebdc5e0
1 parent 3947693
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