Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Commit

Permalink
remove unneccessary parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
ruleant committed May 11, 2015
1 parent 9824ab7 commit 17f31cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildtimetrend/travis.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def _handle_request(self, request, params=None):
request_url = self.api_url + request

request_params = self.request_params.copy()
if (params is not None and check_dict(params, "params")):
if params is not None and check_dict(params, "params"):
request_params.update(params)

req = Request(
Expand Down

0 comments on commit 17f31cd

Please sign in to comment.