Skip to content

Commit

Permalink
Merge pull request #185 from outlawhayden/main
Browse files Browse the repository at this point in the history
tiny fixes from community involvement session
  • Loading branch information
outlawhayden authored Dec 12, 2023
2 parents 3c10642 + 712f652 commit 54c912a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@

Work in Progress

## Tulane Dev Integration Branch

Sawt is a tool designed to bridge the communication gap between New Orleanians and their city council representatives.

## Prerequisites

- Install [DVC](https://dvc.org/doc/install)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ def make_api_call(title, k_inp):
response = requests.post(f"{api_endpoint}", json=payload)
rdict = json.loads(response.text)
card_type_out = rdict["card_type"]
citations_out = rdict["citations"]
responses_out = rdict["responses"]
citations_out = json.dumps(eval(str(rdict["citations"])))
responses_out = json.dumps(eval(str(rdict["responses"])))
return card_type_out, citations_out, responses_out, k_inp

# Open CSV file in append mode
Expand Down

0 comments on commit 54c912a

Please sign in to comment.