From feaa49b07d06d6f1fc22a29a102a912b317f538b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Thu, 27 Dec 2018 17:01:26 +0100 Subject: [PATCH] Attributes example --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0114432..6673707 100644 --- a/README.md +++ b/README.md @@ -981,8 +981,8 @@ Introspection and Metaprograming ```python >>> class Z: ... def __init__(self): -... self.a = 'abcde' -... self.b = 12345 +... self.a = 'abcde' +... self.b = 12345 >>> z = Z() ``` @@ -1414,7 +1414,7 @@ Basic Script Template ```python #!/usr/bin/env python3 # -# Usage: .py +# Usage: .py # from collections import namedtuple @@ -1425,7 +1425,7 @@ import sys def main(): pass - + ### ## UTIL