We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85ea100 commit 26b5195Copy full SHA for 26b5195
testing/example_scripts/rewrite/src/main.py
@@ -1,5 +1,9 @@
1
+"""Stub file for testing"""
2
+
3
from __future__ import annotations
4
5
6
def func(x: int, y: int) -> int:
7
+ """Stub function"""
8
+ assert (x) > 0
9
return 0 if x == y else 1 if x > y else -1
0 commit comments