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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
repos:
- repo: https://github.com/psf/black
rev: 23.7.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 26.3.1
hooks:
- id: black
args: [--target-version=py35]
# GitLab URLs must include the .git suffix
# https://gitlab.com/gitlab-org/gitlab/-/issues/29629
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 7.3.0
hooks:
- id: flake8
args: [
Expand Down
6 changes: 3 additions & 3 deletions test/integration/test_saved_masks.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

"""
Test of ROI mask utils
Test of ROI mask utils

Copyright (C) 2020 University of Dundee. All rights reserved.
Use is subject to license terms supplied in LICENSE.txt
Copyright (C) 2020 University of Dundee. All rights reserved.
Use is subject to license terms supplied in LICENSE.txt
"""

import omero.clients
Expand Down
7 changes: 4 additions & 3 deletions test/unit/test_masks.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

"""
Test of ROI mask utils
Test of ROI mask utils

Copyright (C) 2019 University of Dundee. All rights reserved.
Use is subject to license terms supplied in LICENSE.txt
Copyright (C) 2019 University of Dundee. All rights reserved.
Use is subject to license terms supplied in LICENSE.txt
"""

from omero.rtypes import unwrap
import numpy as np
import pytest
Expand Down
Loading