Skip to content

Commit 80a63d1

Browse files
authored
Update python.md
Remove extra space in Python code that would make it print: ``` 1 + 2 = 3 ``` instead of: ``` 1 + 2 = 3 ```
1 parent 7fd75d1 commit 80a63d1

File tree

1 file changed

+1
-1
lines changed
  • component-model/src/language-support

1 file changed

+1
-1
lines changed

component-model/src/language-support/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ from wasmtime import Store
138138
def main():
139139
store = Store()
140140
component = Root(store)
141-
print("1 + 2 = ", component.add(store, 1, 2))
141+
print("1 + 2 =", component.add(store, 1, 2))
142142

143143
if __name__ == '__main__':
144144
main()

0 commit comments

Comments
 (0)