From c926e72750ddc410f2ae4f1b28d17dfb09b5ca2c Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Thu, 15 Mar 2018 15:49:38 +1100
Subject: [PATCH] tests/cpydiff: Indent workaround code snippet so it formats
 correctly.

---
 tests/cpydiff/types_exception_subclassinit.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/cpydiff/types_exception_subclassinit.py b/tests/cpydiff/types_exception_subclassinit.py
index 56bab51d1..39cdaf45b 100644
--- a/tests/cpydiff/types_exception_subclassinit.py
+++ b/tests/cpydiff/types_exception_subclassinit.py
@@ -4,9 +4,9 @@ description: Exception.__init__ method does not exist.
 cause: Subclassing native classes is not fully supported in MicroPython.
 workaround: Call using ``super()`` instead::
 
-class A(Exception):
-    def __init__(self):
-        super().__init__()
+    class A(Exception):
+        def __init__(self):
+            super().__init__()
 """
 class A(Exception):
     def __init__(self):
-- 
GitLab