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 e4052a9 commit df8ebdbCopy full SHA for df8ebdb
examples/app_installation_commands/app.py
@@ -11,7 +11,7 @@ class YourComponent(L.LightningWork):
11
def run(self):
12
print(lmdb.version())
13
print("lmdb successfully installed")
14
- print("accessing a module in a Work or Flow body works!")
+ print("Accessing a module in a Work or Flow body works!")
15
16
17
class RootFlow(L.LightningFlow):
@@ -23,7 +23,7 @@ def run(self):
23
self.work.run()
24
25
26
-print(f"accessing an object in main code body works!: version={lmdb.version()}")
+print(f"Accessing an object in main code body works!: version = {lmdb.version()}")
27
28
29
# run on a cloud machine
0 commit comments