Revision 542694fb90398031d2fa3d3ab974e460d8278f2c authored by Amanpreet Singh on 29 March 2021, 17:03:21 UTC, committed by Facebook GitHub Bot on 29 March 2021, 17:04:37 UTC
Summary:
Pull Request resolved: https://github.com/facebookresearch/mmf/pull/834

Without proper teardown, the job might fail as errored and restart. This diff adds proper teardown support for datamodules which inherently will include onbox dataloader as well.

Reviewed By: ytsheng, vedanuj

Differential Revision: D26687357

fbshipit-source-id: 8cebc7f49055cea6906cb367b539fc4073666493
1 parent 12650f5
Raw File
.pre-commit-config.yaml
exclude: 'build'

default_language_version:
    python: python3

repos:
-   repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v2.5.0
    hooks:
    -   id: trailing-whitespace
    -   id: check-ast
    -   id: check-merge-conflict
    -   id: no-commit-to-branch
        args: ['--branch=master']
    -   id: check-added-large-files
        args: ['--maxkb=500']
    -   id: end-of-file-fixer

-   repo: https://github.com/Lucas-C/pre-commit-hooks
    rev: v1.1.7
    hooks:
    -   id: insert-license
        files: \.py$
        args:
        - --license-filepath
        - docs/license_header.txt

-   repo: https://gitlab.com/pycqa/flake8
    rev: 3.7.9
    hooks:
    -   id: flake8

-   repo: https://github.com/asottile/pyupgrade
    rev: v2.2.1
    hooks:
    -   id: pyupgrade
        args: ['--py36-plus']

-   repo: https://github.com/timothycrosley/isort
    rev: 4.3.21
    hooks:
    -   id: isort
        additional_dependencies: [toml]
        exclude: ^website

-   repo: https://github.com/ambv/black
    rev: 19.3b0
    hooks:
    - id: black
      language_version: python3.7
back to top