Skip to content

Commit

Permalink
Remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspasser committed Jan 24, 2019
1 parent 730c721 commit 61b0b83
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions rjpl/methods.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ def trip(origin, destination, viaId=None, time=None, searchForArrival=None, useT
else:
raise TypeError("Expected <class 'int'>, got {}.".format(type(maxWalkingDistanceDest)))

print(params)
response = _request('trip', params, timeout)

result = response['TripList']
Expand Down Expand Up @@ -247,10 +246,8 @@ def multiDepartureBoard(*ids, **args):
else:
raise ValueError("Unknown argument '{}'.".format(key))

print(params)
response = _request('multiDepartureBoard', params, timeout=10)

print(response)
result = response['MultiDepartureBoard']

if 'error' in result:
Expand Down

0 comments on commit 61b0b83

Please sign in to comment.