Skip to content

Commit e815fc9

Browse files
committed
test: test lint
1 parent 4ed6b35 commit e815fc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/delphi_epidata.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def _request_with_retry(endpoint, params={}):
7979
"""Make request with a retry if an exception is thrown."""
8080
request_url = f"{Epidata.BASE_URL}/{endpoint}/"
8181
if Epidata.debug:
82-
Epidata.logger.info("Sending GET request", url=request_url, params=params, headers=_HEADERS, auth=Epidata.auth)
82+
Epidata.logger.info("Sending GET request", url=request_url, params=params, headers=_HEADERS, auth=Epidata.auth) # add a little comment
8383
if Epidata.sandbox:
8484
resp = requests.Response()
8585
resp._content = b'true'
@@ -313,7 +313,7 @@ def twitter(auth, locations, dates=None, epiweeks=None):
313313
# Check parameters
314314
if auth is None or locations is None:
315315
raise EpidataBadRequestException("`auth` and `locations` are both required")
316-
if not ((dates is None) ^ (epiweeks is None)):
316+
if not ((dates is None) ^ (epiweeks is None)): # test comment
317317
raise EpidataBadRequestException("exactly one of `dates` and `epiweeks` is required")
318318
# Set up request
319319
params = {

0 commit comments

Comments
 (0)