Skip to content

Commit

Permalink
Update copyright year
Browse files Browse the repository at this point in the history
  • Loading branch information
jl-wynen committed Jan 5, 2024
1 parent dac35d2 commit 22a4a2e
Show file tree
Hide file tree
Showing 74 changed files with 74 additions and 74 deletions.
2 changes: 1 addition & 1 deletion src/scitacean/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

"""High-level interface for SciCat."""

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_base_model.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

"""Types and functions to implement models for communication with SciCat."""
from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_dataset_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
##########################################

# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
# flake8: noqa

"""Base class for Dataset."""
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_html_repr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""HTML representations for Jupyter."""
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_html_repr/_attachment_html.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""HTML representations for attachments for Jupyter."""

from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_html_repr/_common_html.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Common functions for HTML reprs."""

import html
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_html_repr/_dataset_html.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""HTML representations of datasets for Jupyter."""

import html
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_html_repr/_resources.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Handler for packaged assets."""

import importlib.resources
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_internal/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
2 changes: 1 addition & 1 deletion src/scitacean/_internal/dataclass_wrapper.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Python version-independent dataclasses."""

import dataclasses
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_internal/docker.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
# ruff: noqa: S603, S607
"""Helpers to manage docker containers.
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_internal/file_counter.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

from contextlib import contextmanager
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/_internal/orcid.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

"""Validator for ORCIDs.
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/client.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Client to handle communication with SciCat servers."""

from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/datablock.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

"""Wrappers for (Orig)Datablocks."""

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/dataset.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Main dataset structure."""

from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/error.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Exception classes."""


Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/file.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Class to represent files."""

from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/filesystem.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Filesystem utilities.
Scitacean distinguishes between paths on the local filesystem and
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/logging.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Utilities for logging in Scitacean.
The object returned by :func:`scitacean.get_logger` is the only logger
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
##########################################

# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Models for communication with SciCat and user facing dataclasses.
The high-level :class:`scitacean.Client` and :class:`scitacean.Dataset` return objects
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/pid.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Helper type for handling persistent identifiers."""

from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

"""Helpers for testing code with Scitacean."""
2 changes: 1 addition & 1 deletion src/scitacean/testing/_pytest_helpers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

from pathlib import Path
from typing import Optional, Tuple, Union
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/backend/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Utilities for running tests against a locally deployed SciCat backend.
This subpackage provides tools for using a real SciCat backend running in docker
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/backend/_backend.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
import importlib.resources
import os
import time
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/backend/_pytest_helpers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

from typing import Optional

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/backend/config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Backend configuration."""

from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/backend/fixtures.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
# mypy: disable-error-code="no-untyped-def"
"""Pytest fixtures to manage and access a local SciCat backend."""

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/backend/seed.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

"""Initial contents of the SciCat testing backend.
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/client.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Fake client for testing."""

from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/sftp/_pytest_helpers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

from typing import Optional

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/sftp/_sftp.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
import importlib.resources
import time
from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/sftp/fixtures.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
# mypy: disable-error-code="no-untyped-def"
"""Pytest fixtures to manage and access a local SFTP server."""

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/ssh/_pytest_helpers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

from typing import Optional

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/ssh/_ssh.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
import importlib.resources
import time
from dataclasses import dataclass
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/ssh/fixtures.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
# mypy: disable-error-code="no-untyped-def"
"""Pytest fixtures to manage and access a local SSH server."""

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/strategies.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Hypothesis strategies for generating datasets.
This module defines a number of
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/testing/transfer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Fake file transfer."""

from contextlib import contextmanager
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/thumbnail.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Thumbnail type for encoding images."""

from __future__ import annotations
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/transfer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""File transfers to upload and download files to / from a file server.
All file transfers are designed to work with :class:`scitacean.Client`.
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/transfer/sftp.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""SFTP file transfer."""

import os
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/transfer/ssh.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
# ruff: noqa: D100, D101, D102, D103

import os
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/transfer/util.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Common utilities for file transfers."""

from typing import Optional, Union
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/typing.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

"""Definitions for type checking."""

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/util/credentials.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""Tools for securely handling credentials."""
from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/util/formatter.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
"""String-formatting tools."""

from string import Formatter
Expand Down
2 changes: 1 addition & 1 deletion src/scitacean/warning.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

"""Custom warning classes."""

Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
2 changes: 1 addition & 1 deletion tests/client/attachment_client_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
# mypy: disable-error-code="arg-type"

from copy import deepcopy
Expand Down
2 changes: 1 addition & 1 deletion tests/client/client_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

import pickle

Expand Down
2 changes: 1 addition & 1 deletion tests/client/datablock_client_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
# mypy: disable-error-code="arg-type"

import pytest
Expand Down
2 changes: 1 addition & 1 deletion tests/client/dataset_client_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
# mypy: disable-error-code="arg-type, index"

import pydantic
Expand Down
2 changes: 1 addition & 1 deletion tests/client/sample_client_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

import dataclasses

Expand Down
2 changes: 1 addition & 1 deletion tests/common/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
2 changes: 1 addition & 1 deletion tests/common/files.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

import hashlib
from datetime import datetime, timezone
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)

import hypothesis
import pytest
Expand Down
2 changes: 1 addition & 1 deletion tests/dataset_fields_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2023 SciCat Project (https://github.com/SciCatProject/scitacean)
# Copyright (c) 2024 SciCat Project (https://github.com/SciCatProject/scitacean)
# mypy: disable-error-code="arg-type"

# These tests use Dataset instead of DatasetFields in order to test the
Expand Down
Loading

0 comments on commit 22a4a2e

Please sign in to comment.