aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/vela.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/vela.py')
-rw-r--r--ethosu/vela/vela.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/ethosu/vela/vela.py b/ethosu/vela/vela.py
index 0e5e6eba..078f4a41 100644
--- a/ethosu/vela/vela.py
+++ b/ethosu/vela/vela.py
@@ -19,7 +19,6 @@
#
# Provides command line interface, options parsing, and network loading. Before calling the compiler driver.
import argparse
-import datetime
import glob
import os
import sys
@@ -179,8 +178,7 @@ def print_subgraph_io_summary(nng):
def generate_license():
lines = [
"<!--",
- f"SPDX-FileCopyrightText: Copyright 2020-{datetime.date.today().year} "
- "Arm Limited and/or its affiliates <open-source-office@arm.com>",
+ "SPDX-FileCopyrightText: Copyright 2020-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>",
"",
"SPDX-License-Identifier: Apache-2.0",
"",
@@ -196,6 +194,7 @@ def generate_license():
"See the License for the specific language governing permissions and",
"limitations under the License.",
"-->",
+ "",
]
return lines