summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBaruch Sterin <baruchs@gmail.com>2011-10-24 15:21:08 -0700
committerBaruch Sterin <baruchs@gmail.com>2011-10-24 15:21:08 -0700
commit9d652062b76e1e603cd98988d3c0f4d51d0c802d (patch)
tree5ca5d358a9655929ed18f30d8fef87c29f210ad4 /src
parente9ef8e97bf5b4660a771a81de0472aa58d9f972c (diff)
downloadabc-9d652062b76e1e603cd98988d3c0f4d51d0c802d.tar.gz
abc-9d652062b76e1e603cd98988d3c0f4d51d0c802d.tar.bz2
abc-9d652062b76e1e603cd98988d3c0f4d51d0c802d.zip
pyabc: fix indentation in pyabc.i
Diffstat (limited to 'src')
-rw-r--r--src/python/pyabc.i24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/python/pyabc.i b/src/python/pyabc.i
index 44a880a7..023bbdd3 100644
--- a/src/python/pyabc.i
+++ b/src/python/pyabc.i
@@ -607,18 +607,18 @@ class _Cex(object):
return _cex_get_frame(self.pCex)
def cex_get_vector():
-
- res = []
-
- for i in xrange(_cex_get_vec_len()):
- cex = _cex_get_vec(i)
-
- if cex is None:
- res.append(None)
- else:
- res.append(_Cex(cex))
-
- return res
+
+ res = []
+
+ for i in xrange(_cex_get_vec_len()):
+ cex = _cex_get_vec(i)
+
+ if cex is None:
+ res.append(None)
+ else:
+ res.append(_Cex(cex))
+
+ return res
def cex_get():