Remove braces for Python sample

Suggested by community member in an un-merged PR.

Signed-off-by: Alex Ellis (VMware) <alexellis2@gmail.com>
This commit is contained in:
Alex Ellis (VMware) 2018-07-10 21:14:02 +01:00
parent 099362b51d
commit f23d90d441

View File

@ -6,6 +6,6 @@ def get_stdin():
buf = buf + line
return buf
if(__name__ == "__main__"):
if __name__ == "__main__":
st = get_stdin()
print(st)