We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98d6c0a commit 5bb3c58Copy full SHA for 5bb3c58
1 file changed
examples/plain-javascript/src-tauri/src-python/main.py
@@ -2,9 +2,9 @@
2
3
counter = 0
4
5
-def greet_python(a):
+def greet_python(input):
6
global counter
7
counter = counter + 1
8
- print("received: " + str(a))
+ print("received: " + str(input))
9
s = "" if counter < 2 else "s"
10
- return f'Hello {a}! You\'ve been greeted {counter} time{s} from Python.'
+ return f'Hello {input}! You\'ve been greeted {counter} time{s} from Python.'
0 commit comments