Skip to content

Commit

Permalink
trivial: fix typos; add explicit imports
Browse files Browse the repository at this point in the history
Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Jul 18, 2024
1 parent edd52c4 commit 7c38009
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion l4v-deploy/common.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
# Copyright 2020, Data61, CSRIO
# Copyright 2020, Data61, CSIRO
# SPDX-License-Identifier: BSD-2-Clause
#
# Common utils.
Expand Down
5 changes: 2 additions & 3 deletions l4v-deploy/seL4-pp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright 2020, Data61, CSRIO
# Copyright 2020, Data61, CSIRO
# SPDX-License-Identifier: BSD-2-Clause
#
# This is a post-build deploy script for the “seL4 preprocess” build.
Expand All @@ -16,13 +16,12 @@

import argparse
import os
import re
import subprocess
import sys
from xml.dom import minidom

# Local imports
from common import *
from common import run_command, loud_command, indent, set_repo_email, format_commit_message

parser = argparse.ArgumentParser("Update seL4 revision in verification-manifest from CI",
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
Expand Down
4 changes: 2 additions & 2 deletions l4v-deploy/staging-manifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright 2020, Data61, CSRIO
# Copyright 2020, Data61, CSIRO
# SPDX-License-Identifier: BSD-2-Clause
#
# If the l4v tests succeeded, write this version to default.xml
Expand All @@ -26,7 +26,7 @@ import sys
import tempfile

# Local imports
from common import *
from common import run_command, loud_command, indent, set_repo_email, format_commit_message

parser = argparse.ArgumentParser("Auto-update verification manifest from CI",
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
Expand Down

0 comments on commit 7c38009

Please sign in to comment.