Skip to content

Commit a0e4443

Browse files
committed
test: fix lint
1 parent 58b4d88 commit a0e4443

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
@@ -72,7 +72,7 @@ def _request_with_retry(endpoint, params={}):
7272
"""Make request with a retry if an exception is thrown."""
7373
request_url = f"{Epidata.BASE_URL}/{endpoint}/"
7474
if Epidata.debug:
75-
Epidata.logger.info("Sending GET request", url=request_url, params=params, headers=_HEADERS, auth=Epidata.auth) # add a little comment
75+
Epidata.logger.info("Sending GET request", url=request_url, params=params, headers=_HEADERS, auth=Epidata.auth)
7676
if Epidata.sandbox:
7777
resp = requests.Response()
7878
resp._content = b'true'
@@ -306,7 +306,7 @@ def twitter(auth, locations, dates=None, epiweeks=None):
306306
# Check parameters
307307
if auth is None or locations is None:
308308
raise EpidataBadRequestException("`auth` and `locations` are both required")
309-
if not ((dates is None) ^ (epiweeks is None)): # test comment
309+
if not ((dates is None) ^ (epiweeks is None)):
310310
raise EpidataBadRequestException("exactly one of `dates` and `epiweeks` is required")
311311
# Set up request
312312
params = {

0 commit comments

Comments
 (0)