Typo in printing app.py (#16643)

This commit is contained in:
Muhammad Anas 2023-02-08 01:26:07 +05:00 committed by GitHub
parent 434ea2560f
commit d0df0dcb26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ class YourComponent(L.LightningWork):
def run(self):
print(lmdb.version())
print("lmdb successfully installed")
print("accessing a module in a Work or Flow body works!")
print("Accessing a module in a Work or Flow body works!")
class RootFlow(L.LightningFlow):
@ -23,7 +23,7 @@ class RootFlow(L.LightningFlow):
self.work.run()
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()}")
# run on a cloud machine