From b5e3e73dbaac7c1175432a06c39107821f9d7aa3 Mon Sep 17 00:00:00 2001 From: Diego Ramirez Date: Mon, 29 Nov 2021 13:44:47 -0600 Subject: [PATCH 1/2] Add copyright notice -- `nox/_decorators.py` --- nox/_decorators.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/nox/_decorators.py b/nox/_decorators.py index cedd1fb9..a992f5eb 100644 --- a/nox/_decorators.py +++ b/nox/_decorators.py @@ -1,3 +1,17 @@ +# Copyright 2020 Alethea Katherine Flowers +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + import copy import functools import inspect From d89c3ade27100b849baff5dc4ed7cb88eb347048 Mon Sep 17 00:00:00 2001 From: Diego Ramirez Date: Mon, 29 Nov 2021 13:46:05 -0600 Subject: [PATCH 2/2] Add copyright notice -- `nox/_typing.py` --- nox/_typing.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/nox/_typing.py b/nox/_typing.py index d323f04a..f746afe7 100644 --- a/nox/_typing.py +++ b/nox/_typing.py @@ -1,3 +1,17 @@ +# Copyright 2020 Alethea Katherine Flowers +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + __all__ = ["TYPE_CHECKING", "ClassVar", "NoReturn", "Python"] import typing as _typing