]> Cypherpunks.ru repositories - pyderasn.git/blobdiff - pyderasn.py
pylint
[pyderasn.git] / pyderasn.py
index c8e29e3d767249c9de62be911540c9c3cf9e7992..099e8a436c21bf18412651ab6563958856feed16 100755 (executable)
@@ -4313,8 +4313,8 @@ class Sequence(Obj):
         values = {}
         for name, spec in self.specs.items():
             if spec.optional and (
-                (lenindef and v[:EOC_LEN].tobytes() == EOC) or
-                len(v) == 0
+                    (lenindef and v[:EOC_LEN].tobytes() == EOC) or
+                    len(v) == 0
             ):
                 continue
             sub_decode_path = decode_path + (name,)