From 1d496c1b20da8ee373f41dd08863db222a15876c Mon Sep 17 00:00:00 2001 From: "Jason M. Gates" Date: Thu, 9 May 2024 17:35:52 -0600 Subject: [PATCH] docs: Fix license/copyright text in file Should have been included in b3553415da40949f9ce496ca1363cb69424da791, but was overlooked. --- reverse_argparse/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reverse_argparse/__init__.py b/reverse_argparse/__init__.py index 9d8e863..b576306 100644 --- a/reverse_argparse/__init__.py +++ b/reverse_argparse/__init__.py @@ -3,13 +3,13 @@ Provide the :class:`ReverseArgumentParser` class and :func:`quote_arg_if_necessary` helper function. +""" -© 2024 National Technology & Engineering Solutions of Sandia, LLC -(NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the U.S. -Government retains certain rights in this software. +# © 2024 National Technology & Engineering Solutions of Sandia, LLC +# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the +# U.S. Government retains certain rights in this software. -SPDX-License-Identifier: BSD-3-Clause -""" +# SPDX-License-Identifier: BSD-3-Clause from .reverse_argparse import ReverseArgumentParser, quote_arg_if_necessary