Skip to content

Commit

Permalink
fix python linter
Browse files Browse the repository at this point in the history
  • Loading branch information
pedoch committed Oct 25, 2023
1 parent 4a2a8b1 commit d5f5046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ def shorten_acquisition_url(acquisition_url):
url_params_string = acquisition_url.split("?")[1]
url_params_list = url_params_string.split("&")

## Check for and remove fbclid and gclid parameters
# Check for and remove fbclid and gclid parameters
for param in url_params_list:
if param.startswith("fbclid") or param.startswith("gclid"):
url_params_list.remove(param)
Expand Down

0 comments on commit d5f5046

Please sign in to comment.