From 4ceded41557fcbc9e51deb1793b1d6e08883d9f5 Mon Sep 17 00:00:00 2001 From: jitu16 Date: Wed, 21 Jan 2026 19:45:08 -0600 Subject: [PATCH 1/2] Changes from G2! --- README.md | 2 ++ g2.py | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 g2.py diff --git a/README.md b/README.md index ca208f1..16b2dfb 100644 --- a/README.md +++ b/README.md @@ -16,3 +16,5 @@ This code is distributed under the Apache 2.0 license, see the [LICENSE](LICENSE ## Getting Started with development There is a specfic document on this at [DEVELOPMENT.md](DEVELOPMENT.md) + +This is g2! diff --git a/g2.py b/g2.py new file mode 100644 index 0000000..643a2d4 --- /dev/null +++ b/g2.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python3 +def foo(): + print("Hi") + +foo From 13222caece5e558b78382bfdf700590f948e8c23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillermo=20A=2E=20Fidalgo-Rodr=C3=ADguez?= Date: Wed, 21 Jan 2026 20:00:54 -0600 Subject: [PATCH 2/2] Add SPDX license headers to g2.py Add SPDX license information to g2.py --- g2.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/g2.py b/g2.py index 643a2d4..def1538 100644 --- a/g2.py +++ b/g2.py @@ -1,3 +1,6 @@ +# SPDX-FileCopyrightText: 2022 Fermi Research Alliance, LLC +# SPDX-License-Identifier: Apache-2.0 + #!/usr/bin/env python3 def foo(): print("Hi")