langdonholmes commited on
Commit
beab4b7
1 Parent(s): fc67c0f

Bypass validation check on custom lamda operator

Browse files
Files changed (1) hide show
  1. main.py +9 -0
main.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import typer
2
+
3
+
4
+ def main():
5
+ typer.echo("Hello World")
6
+
7
+
8
+ if __name__ == "__main__":
9
+ typer.run(main)