diff --git a/README.md b/README.md index 0e2a9a7..5ce3eb9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This repository serves as the template for Python projects at [Ultralytics](https://www.ultralytics.com/). It encapsulates best practices, standard configurations, and essential project structures, streamlining the initiation process for new Python projects. By leveraging this template, developers at Ultralytics can ensure consistency and adherence to quality standards across all Python-based software developments. -[![Ultralytics Actions](https://github.com/ultralytics/template/actions/workflows/format.yml/badge.svg)](https://github.com/ultralytics/template/actions/workflows/format.yml) Discord Ultralytics Forums Ultralytics Reddit +[![Template CI](https://github.com/ultralytics/template/actions/workflows/ci.yml/badge.svg)](https://github.com/ultralytics/template/actions/workflows/ci.yml) [![Ultralytics Actions](https://github.com/ultralytics/template/actions/workflows/format.yml/badge.svg)](https://github.com/ultralytics/template/actions/workflows/format.yml) Discord Ultralytics Forums Ultralytics Reddit ## 🗂 Repository Structure diff --git a/template/module1.py b/template/module1.py index 3835845..f47a07c 100644 --- a/template/module1.py +++ b/template/module1.py @@ -24,7 +24,7 @@ def add_numbers(a, b): def main(): """ - Main entry point for the Ultralytics YOLO application. + Main entry point for the Ultralytics Template application. Executes a simple addition operation by calling the add_numbers function with predefined values. This function serves as a basic demonstration of program flow and function calling within the Ultralytics framework.