Skip to content

Commit

Permalink
Merge pull request #294 from neuronets/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
[pre-commit.ci] pre-commit autoupdate
  • Loading branch information
satra authored Apr 1, 2024
2 parents 902a124 + 8c8afb0 commit cb855fe
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 23.10.0
rev: 24.3.0
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8
rev: 6.1.0
rev: 7.0.0
hooks:
- id: flake8
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
exclude: ^(nobrainer/_version\.py|versioneer\.py)$
Expand Down
1 change: 1 addition & 0 deletions nobrainer/io.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Input/output methods."""

import csv
import functools
import multiprocessing
Expand Down
1 change: 1 addition & 0 deletions nobrainer/models/autoencoder.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Model definition for Autoencoder.
"""

import math

from tensorflow.keras import layers, models
Expand Down
1 change: 1 addition & 0 deletions nobrainer/models/dcgan.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Model definition for DCGAN.
"""

import math

from tensorflow.keras import layers, models
Expand Down
1 change: 1 addition & 0 deletions nobrainer/models/progressiveae.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Model definition for ProgressiveAE.
"""

import tensorflow as tf
from tensorflow.keras import layers, models

Expand Down
1 change: 1 addition & 0 deletions nobrainer/models/unetr.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
Adapted from https://www.kaggle.com/code/usharengaraju/tensorflow-unetr-w-b
"""

import math

import tensorflow as tf
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
To install, run `python3 setup.py install`.
"""

import os
import sys

Expand Down

0 comments on commit cb855fe

Please sign in to comment.