Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 25.1.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.1.0
hooks:
- id: black
- repo: https://github.com/kynan/nbstripout
rev: 0.8.1
rev: 0.9.1
hooks:
- id: nbstripout
1 change: 1 addition & 0 deletions tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# @Last Modified by: Kelvin
# @Last Modified time: 2022-07-18 11:55:02
"""tools package"""

import matplotlib

FONTTYPE = 42
Expand Down
1 change: 1 addition & 0 deletions tools/sc/_sc.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# @Last Modified by: Kelvin
# @Last Modified time: 2022-11-17 16:09:57
"""Miscellaneous single-cell functions."""

import functools
import math
import scipy.sparse
Expand Down
1 change: 1 addition & 0 deletions tools/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# @Last Modified by: Kelvin
# @Last Modified time: 2022-08-16 14:19:43
"""tools module."""

from ._tools import (
alpha_code,
cmp,
Expand Down
1 change: 1 addition & 0 deletions tools/tools/_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# @Last Modified by: Kelvin
# @Last Modified time: 2022-08-16 14:19:25
"""Miscellaneous functions."""

import numpy as np

import matplotlib.pyplot as plt
Expand Down
Loading