From d0a21d5ea5a1ed9a3988bf73f290a19ab3ae8786 Mon Sep 17 00:00:00 2001 From: "Jason M. Gates" Date: Tue, 21 Jan 2025 08:18:45 -0700 Subject: [PATCH] docs: Switch to `project_copyright` Using this alias means we're no longer overshadowing the `copyright` built-in, so we can remove the comment to ignore that Ruff linting rule. --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 25cd016..5c8ea6c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -13,7 +13,7 @@ # -- Project information ------------------------------------------------------ project = "reverse_argparse" -copyright = ( # noqa: A001 +project_copyright = ( "2023, National Technology & Engineering Solutions of Sandia, LLC (NTESS)" ) author = "Jason M. Gates"