diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 67e6724..655d829 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -1,4 +1,4 @@ -# Ultralytics 🚀 - AGPL-3.0 license +# Ultralytics YOLO 🚀, AGPL-3.0 License https://ultralytics.com/license # Ultralytics Actions https://github.com/ultralytics/actions # This workflow automatically formats code and documentation in PRs to official Ultralytics standards diff --git a/pyproject.toml b/pyproject.toml index 5320351..5df5659 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,4 @@ -# Ultralytics Template 🚀, AGPL-3.0 license +# Ultralytics YOLO 🚀, AGPL-3.0 License https://ultralytics.com/license # Overview: # This pyproject.toml file manages the build, packaging, and distribution of the Ultralytics Template library. diff --git a/template/__init__.py b/template/__init__.py index 5e1c8c1..1d33b27 100644 --- a/template/__init__.py +++ b/template/__init__.py @@ -1,3 +1,3 @@ -# Ultralytics YOLO 🚀, AGPL-3.0 license +# Ultralytics YOLO 🚀, AGPL-3.0 License https://ultralytics.com/license __version__ = "0.0.0" diff --git a/template/module1.py b/template/module1.py index 59c3acd..2114ded 100644 --- a/template/module1.py +++ b/template/module1.py @@ -1,4 +1,4 @@ -# Ultralytics YOLO 🚀, AGPL-3.0 license +# Ultralytics YOLO 🚀, AGPL-3.0 License https://ultralytics.com/license def add_numbers(a, b): diff --git a/tests/test_module1.py b/tests/test_module1.py index 03bc84a..9e66641 100644 --- a/tests/test_module1.py +++ b/tests/test_module1.py @@ -1,4 +1,4 @@ -# Ultralytics YOLO 🚀, AGPL-3.0 license +# Ultralytics YOLO 🚀, AGPL-3.0 License https://ultralytics.com/license from module1 import add_numbers