Closed rosteen closed 1 year ago
In more recent Python versions, checking var is "string" raises a warning (you should use == for string comparison). This fixes the two places that were raising this warning when importing juliet, as well as cleaning up some extraneous white space.
var is "string"
==
juliet
Thanks @rosteen! Added most of these changes in this commit.
In more recent Python versions, checking
var is "string"
raises a warning (you should use==
for string comparison). This fixes the two places that were raising this warning when importingjuliet
, as well as cleaning up some extraneous white space.