Skip to content

Commit

Permalink
Update copyright 🤷
Browse files Browse the repository at this point in the history
  • Loading branch information
econchick committed Apr 8, 2024
1 parent 73128e3 commit 0710ed0
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion src/interrogate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020-2021 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Explain yourself! Interrogate a codebase for docstring coverage."""
__author__ = "Lynn Root"
__version__ = "1.7.0"
Expand Down
2 changes: 1 addition & 1 deletion src/interrogate/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""interrogate entrypoint"""

from interrogate import cli
Expand Down
2 changes: 1 addition & 1 deletion src/interrogate/badge_gen.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Module for generating an SVG badge.
Inspired by `coverage-badge <https://github.com/dbrgn/coverage-badge>`_.
Expand Down
2 changes: 1 addition & 1 deletion src/interrogate/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""CLI entrypoint into `interrogate`."""

import os
Expand Down
2 changes: 1 addition & 1 deletion src/interrogate/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""
Configuration-related helpers.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/interrogate/coverage.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Measure and report on documentation coverage in Python modules."""
import ast
import decimal
Expand Down
2 changes: 1 addition & 1 deletion src/interrogate/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Collection of general helper functions."""

import contextlib
Expand Down
2 changes: 1 addition & 1 deletion src/interrogate/visit.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""AST traversal for finding docstrings."""

import ast
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Yay functional tests for the ``interrogate`` package!"""
2 changes: 1 addition & 1 deletion tests/functional/sample/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Some init module docs"""
2 changes: 1 addition & 1 deletion tests/functional/sample/child_sample/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
# intentionally no docstrings here
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
# intentionally no docstrings here


Expand Down
2 changes: 1 addition & 1 deletion tests/functional/sample/full.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Sample module-level docs"""
import typing

Expand Down
2 changes: 1 addition & 1 deletion tests/functional/sample/partial.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Sample module-level docs"""
import typing

Expand Down
2 changes: 1 addition & 1 deletion tests/functional/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Functional tests for the CLI and implicitly interrogate/visit.py."""

import os
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/test_coverage.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Functional tests for interrogate/coverage.py."""

import os
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Yay unit tests for the ``interrogate`` package!"""
2 changes: 1 addition & 1 deletion tests/unit/test_badge_gen.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Unit tests for interrogate/badge_gen.py module"""

import os
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Unit tests for interrogate/config.py module"""

import configparser
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2020 Lynn Root
# Copyright 2020-2024 Lynn Root
"""Unit tests for interrogate/utils.py module"""

import re
Expand Down

0 comments on commit 0710ed0

Please sign in to comment.