mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-30 14:35:15 +02:00
iterkeys fix for Python 3
This commit is contained in:
parent
317706dfd0
commit
189647032a
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ class ParameterIndexOperations(object):
|
|||
return self._properties.keys()
|
||||
|
||||
def iterproperties(self):
|
||||
return self._properties.iterkeys()
|
||||
return iter(self._properties)
|
||||
|
||||
def shift_right(self, start, size):
|
||||
for ind in self.iterindices():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue