From 1176fa7b2e024204cbfd055e6416e33226142204 Mon Sep 17 00:00:00 2001 From: sachin paunikar Date: Tue, 28 Jul 2026 15:45:26 +0530 Subject: [PATCH] test: add test_pr_bloated.py to test CodeSlim bot PR audit --- examples/test_pr_bloated.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 examples/test_pr_bloated.py diff --git a/examples/test_pr_bloated.py b/examples/test_pr_bloated.py new file mode 100644 index 0000000..dc1c264 --- /dev/null +++ b/examples/test_pr_bloated.py @@ -0,0 +1,13 @@ +""" +Test Python file for CodeSlim GitHub PR Bot live audit verification. +Contains unused dead imports (sys, os, math, re) to test automatic cleanup. +""" + +import sys +import os +import math +import re + +def calculate_doubled_value(value: int) -> int: + """Calculate doubled integer value.""" + return value * 2