Skip to content

Commit

Permalink
#99 fix pep8 comment errrors
Browse files Browse the repository at this point in the history
  • Loading branch information
Sh4kE committed Dec 18, 2016
1 parent 54cdfb8 commit d771675
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/parsers/match_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def parse(self):
soup = BeautifulSoup(self.html_source, "html.parser")
return self.parse_html(soup)

def parse_html(self, soup): #pylint: disable=too-many-locals
def parse_html(self, soup): # pylint: disable=too-many-locals
"""
:param soup: BeautifulSoup of match page
:return: parsed match
Expand Down
2 changes: 1 addition & 1 deletion core/tests/unit/views/test_parser_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def test_match_parser_view(self, matchday_parser_mock, match_parser_mock, parse_
@patch('core.managers.parser_manager.ParserManager.parse_all_matches')
@patch('core.managers.parser_manager.ParserManager.parse_awp_boundaries')
@patch('core.managers.parser_manager.ParserManager.parse_ofm_version')
def test_parser_view(self, site_manager_mock, parse_matchday_mock, parse_players_mock, parse_player_statistics_mock, # pylint: disable=too-many-arguments
def test_parser_view(self, site_manager_mock, parse_matchday_mock, parse_players_mock, parse_player_statistics_mock, # pylint: disable=too-many-arguments
parse_finances_mock, parse_all_matches_mock, parse_awp_mock, parse_version_mock):
response = self.client.get(reverse('core:trigger:trigger_parsing'))

Expand Down

0 comments on commit d771675

Please sign in to comment.