https://github.com/unit8co/darts
Raw File
Tip revision: 60c2deb496ebbbebdbbce09e46d66c48af17ec48 authored by madtoinou on 11 November 2022, 07:46:55 UTC
test if normalized deviation raise ValueError when actual TimeSeries contains only zeroes
Tip revision: 60c2deb
.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.10.1
    hooks:
      -  id: isort

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