From 495044ddf0473a11002a42fe8c6d5a867ee7369c Mon Sep 17 00:00:00 2001 From: "M.Anas" <96944434+AlphaAnas@users.noreply.github.com> Date: Tue, 3 Mar 2026 10:53:02 +0500 Subject: [PATCH] Check Commit to check Sonarqube is working --- examples/example_file.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 examples/example_file.py diff --git a/examples/example_file.py b/examples/example_file.py new file mode 100644 index 0000000..be7e22b --- /dev/null +++ b/examples/example_file.py @@ -0,0 +1,20 @@ + +""" +An example file to check sonarqube working +""" + + +# unused variables + +a = 10 +b= 20 + + +# unused function + +def unused_function(): + print("This function is not used anywhere in the code.") + +# unused import +import math +