From c2432093a6a27c0d9ed0d07d7d100d3a61a10b0b Mon Sep 17 00:00:00 2001 From: David Gardner Date: Wed, 27 Dec 2023 14:00:18 -0800 Subject: [PATCH] Add license header, remove redundant lines --- .../morpheus_ex/external_cpp_stage/__init__.py | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/examples/external_cpp_stage/morpheus_ex/external_cpp_stage/__init__.py b/examples/external_cpp_stage/morpheus_ex/external_cpp_stage/__init__.py index 04f96542d1..55746c5815 100644 --- a/examples/external_cpp_stage/morpheus_ex/external_cpp_stage/__init__.py +++ b/examples/external_cpp_stage/morpheus_ex/external_cpp_stage/__init__.py @@ -1,6 +1,17 @@ -from . import _version - -__version__ = _version.get_versions()['version'] +# Copyright (c) 2023, NVIDIA CORPORATION. +# +# 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. from . import _version + __version__ = _version.get_versions()['version']