Skip to content

Commit

Permalink
Merge branch 'main' into ask-redirects-08-2023
Browse files Browse the repository at this point in the history
  • Loading branch information
csebianlander authored Aug 9, 2023
2 parents 493a525 + f30897e commit 7edef41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfgov/paying_for_college/models/disclosures.py
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ def notify_school(self):
if school.contact:
if school.contact.endpoint:
endpoint = school.contact.endpoint
if type(endpoint) == str:
if isinstance(endpoint, str):
endpoint = endpoint.encode("utf-8")
try:
resp = requests.post(endpoint, data=payload, timeout=10)
Expand Down

0 comments on commit 7edef41

Please sign in to comment.