Skip to content

Commit 9d1ccf0

Browse files
committed
fix: clean up test file to pass all pre-commit quality checks
1 parent f9db0a1 commit 9d1ccf0

File tree

2 files changed

+23
-22
lines changed

2 files changed

+23
-22
lines changed

scripts/test_precommit.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Test file to verify pre-commit hooks
2+
3+
4+
def test_function():
5+
x = 1 + 2
6+
y = 3 + 4
7+
return x + y
8+
9+
10+
def another_function(a, b, c):
11+
result = a + b + c
12+
return result
13+
14+
15+
def good_function():
16+
return "test"
17+
18+
19+
if __name__ == "__main__":
20+
print("Testing pre-commit hooks")
21+
print("Result:", test_function())
22+
print("Another result:", another_function(1, 2, 3))
23+
print("Good function:", good_function())

test_precommit.py

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)