aboutsummaryrefslogtreecommitdiffstats
path: root/golemflavor/misc.py
diff options
context:
space:
mode:
authorShivesh Mandalia <shivesh.mandalia@outlook.com>2020-02-28 22:38:40 +0000
committerShivesh Mandalia <shivesh.mandalia@outlook.com>2020-02-28 22:38:40 +0000
commit018cf806e2d852df164b0c795d4e3ffcd122dda0 (patch)
tree08efc6310ae929d60d9c9881b40a0b337da8841d /golemflavor/misc.py
parent4707f109e2bc35c6e6f6b737607323c0a5931e48 (diff)
downloadGolemFlavor-018cf806e2d852df164b0c795d4e3ffcd122dda0.tar.gz
GolemFlavor-018cf806e2d852df164b0c795d4e3ffcd122dda0.zip
add brackets to all print statements
Diffstat (limited to 'golemflavor/misc.py')
-rw-r--r--golemflavor/misc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/golemflavor/misc.py b/golemflavor/misc.py
index 4974775..d83bb99 100644
--- a/golemflavor/misc.py
+++ b/golemflavor/misc.py
@@ -77,7 +77,7 @@ def parse_bool(s):
Examples
----------
>>> from misc import parse_bool
- >>> print parse_bool('true')
+ >>> print(parse_bool('true'))
True
"""