Skip to content

Commit

Permalink
change null to None
Browse files Browse the repository at this point in the history
  • Loading branch information
erik-sn committed Oct 9, 2019
1 parent 119382e commit 100b9f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scigym/utils/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def create_or_refresh_gym_repos(self) -> List[Repository]:
repo.update({'readme': readme['content'], 'readme_name': readme['name']})
else:
logger.info('Failed to included Readme.md.')
repo.update({'readme': null, 'readme_name': null})
repo.update({'readme': None, 'readme_name': None})
# TODO need to multi-thread this
if self._is_gym_repo(repo['contents_url'].replace('{+path}', '')):
repo.update({'gym': True})
Expand Down

0 comments on commit 100b9f3

Please sign in to comment.