Skip to content

Commit

Permalink
fixed tuple using
Browse files Browse the repository at this point in the history
  • Loading branch information
tomerghelber committed Oct 8, 2014
1 parent 043aaca commit 201601e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pymal/anime.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,8 +679,8 @@ def __parse_recommendations(self, link_for_recommendations: str):
<tags>{15:s}</tags>
</entry>"""

DEFAULT_ADDING = tuple(0, 6, 0, 0, 0, 0, 0, 0, consts.MALAPI_NONE_TIME, consts.MALAPI_NONE_TIME, 0, False, False,
'', '', '', )
DEFAULT_ADDING = (0, 6, 0, 0, 0, 0, 0, 0, consts.MALAPI_NONE_TIME, consts.MALAPI_NONE_TIME, 0, False, False, '', '',
'', )

def _add_data_checker(self, ret: str):
"""
Expand Down
4 changes: 2 additions & 2 deletions pymal/manga.py
Original file line number Diff line number Diff line change
Expand Up @@ -642,8 +642,8 @@ def __parse_recommendations(self, link_for_recommendations: str):
<retail_volumes>{15:d}</retail_volumes>
</entry>"""

DEFAULT_ADDING = tuple(0, 0, 6, 0, 0, 0, 0, consts.MALAPI_NONE_TIME, consts.MALAPI_NONE_TIME, 0, False, False, '',
'', '', 0, )
DEFAULT_ADDING = (0, 0, 6, 0, 0, 0, 0, consts.MALAPI_NONE_TIME, consts.MALAPI_NONE_TIME, 0, False, False, '', '',
'', 0, )

def _add_data_checker(self, ret: str):
"""
Expand Down

0 comments on commit 201601e

Please sign in to comment.