Revision 14d65b48ecd318c7ad98e671487cd11f92250dd9 authored by Robrecht Cannoodt on 05 April 2022, 12:14:10 UTC, committed by GitHub on 05 April 2022, 12:14:10 UTC
* Fix isinstance arg 2 must be a type error

* fix markdown

* Use dummy class

Co-authored-by: Isaac Virshup <ivirshup@gmail.com>
1 parent 05381a3
Raw File
.pre-commit-config.yaml
repos:
-   repo: https://github.com/psf/black
    rev: 22.3.0
    hooks:
    -   id: black
-   repo: https://github.com/PyCQA/flake8
    rev: 4.0.1
    hooks:
    -   id: flake8
-   repo: https://github.com/pre-commit/mirrors-autopep8
    rev: v1.6.0
    hooks:
    -   id: autopep8
        args: ["-i"]
-   repo: https://github.com/pre-commit/pre-commit-hooks
    rev: v4.1.0
    hooks:
    -   id: trailing-whitespace
        exclude: scanpy/tests/_data
    -   id: end-of-file-fixer
        exclude: scanpy/tests/_data
    -   id: check-added-large-files
    -   id: check-case-conflict
    -   id: check-toml
    -   id: check-yaml
    -   id: check-merge-conflict
    -   id: detect-private-key

ci:
    autofix_prs: false
back to top