binref / refinery

High Octane Triage Analysis
Other
635 stars 63 forks source link

Correct Tuple #34

Closed Squiblydoo closed 1 year ago

Squiblydoo commented 1 year ago

The tuple used the for-loop was missing commas to separate the items. Without the commas, the tuple is read as a string and the attribute gets checked against characters in the string. With the commas, each attribute is correctly checked against each item within the tuple.

jhhcs commented 1 year ago

Thanks a lot! I am just doing due diligence and letting the test suite run its course, then I will merge this ASAP.