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