Results 5 comments of Sherman Hewitt

It seems to have something to do with an earlier del statement: https://github.com/newsdev/who_the_hill/blob/master/twilio_app.py#L152 Commenting out that line allowed the failure message to send.

Looks like [this line](https://github.com/newsdev/who_the_hill/blob/master/twilio_app.py#L169) still executes even if we hit [this prior section](https://github.com/newsdev/who_the_hill/blob/master/twilio_app.py#L150-L153), thus causing the error. Removing the first `del` fixes the issue. [Fun fact](https://stackoverflow.com/questions/19805654/python-try-finally-block-returns): `finally` will *always* execute,...

When you say "actual data line," you mean the orange line plotting the prices the user typed?

By chance, would the following scenario be something to trap for on the server: User drags gray entity to pink area of another entity. User realizes error: the dragged entity...

The route taken here seems to depend on whether we use FuzzyWuzzy or Dedupe for the entity service. Fuzzy compares individual strings to compute a score, while Dedupe can compare...