https://github.com/unit8co/darts
Raw File
Tip revision: 92391a894bb39b8fc680e52a7b305c8904155637 authored by dennisbader on 31 July 2023, 11:46:45 UTC
Merge branch 'master' into feature/675_tft_explainer
Tip revision: 92391a8
.pre-commit-config.yaml
repos:
  - repo: https://github.com/psf/black
    rev: 22.3.0
    hooks:
      - id: black-jupyter
        language_version: python3

  - repo: https://github.com/PyCQA/flake8
    rev: 4.0.1
    hooks:
    -   id: flake8
        language_version: python3

  - repo: https://github.com/pycqa/isort
    rev: 5.11.5
    hooks:
      -  id: isort

  - repo: https://github.com/asottile/pyupgrade
    rev: v2.31.0
    hooks:
    -   id: pyupgrade
        args: ['--py37-plus']
back to top