From f23d90d441194d270b3bcf7997550f2f8e7e4c1d Mon Sep 17 00:00:00 2001 From: "Alex Ellis (VMware)" Date: Tue, 10 Jul 2018 21:14:02 +0100 Subject: [PATCH] Remove braces for Python sample Suggested by community member in an un-merged PR. Signed-off-by: Alex Ellis (VMware) --- sample-functions/BaseFunctions/python/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample-functions/BaseFunctions/python/handler.py b/sample-functions/BaseFunctions/python/handler.py index eaa3cb7b..a4292306 100644 --- a/sample-functions/BaseFunctions/python/handler.py +++ b/sample-functions/BaseFunctions/python/handler.py @@ -6,6 +6,6 @@ def get_stdin(): buf = buf + line return buf -if(__name__ == "__main__"): +if __name__ == "__main__": st = get_stdin() print(st)