summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xWrappers/Python/ccpi/framework/BlockDataContainer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Wrappers/Python/ccpi/framework/BlockDataContainer.py b/Wrappers/Python/ccpi/framework/BlockDataContainer.py
index 9a42a16..e077290 100755
--- a/Wrappers/Python/ccpi/framework/BlockDataContainer.py
+++ b/Wrappers/Python/ccpi/framework/BlockDataContainer.py
@@ -18,7 +18,7 @@ import functools
class BlockDataContainer(object):
'''Class to hold a composite operator'''
__array_priority__ = 1
- def __init__(self, *args, shape=None):
+ def __init__(self, shape=None, *args):
'''containers must be passed row by row'''
self.containers = args
self.index = 0