Merge pull request #88 from louietan/master

Convert iterator to list to make it JSON serializable.
This commit is contained in:
Alex Yatskov 2018-07-29 10:46:54 -07:00 committed by GitHub
commit 47a99111c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -489,7 +489,7 @@ class AnkiConnect:
@api()
def multi(self, actions):
return map(self.handler, actions)
return list(map(self.handler, actions))
#