Skip to content

Commit 0cc925b

Browse files
committed
wrong order
1 parent e84d804 commit 0cc925b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc/blocking.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def mapf(self, f):
7777
-------
7878
f : array -> T
7979
"""
80-
return Compose(self.rmap,f)
80+
return Compose(f, self.rmap)
8181

8282
class DictToVarBijection(object):
8383
"""
@@ -101,7 +101,7 @@ def rmap(self, apt):
101101

102102
return dpt
103103
def mapf(self, f):
104-
return Compose(self.rmap, f)
104+
return Compose(f, self.rmap)
105105

106106

107107
class Compose(object):

0 commit comments

Comments
 (0)