Don't test with is not for a literal

This commit is contained in:
Jelle Spijker 2022-11-30 22:23:17 +01:00 committed by GitHub
parent 46df77543b
commit eb4451f25c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ class ActiveQuality:
string_parts.append(self.custom_profile)
else:
string_parts.append(self.profile)
if self.intent_category is not "default":
if self.intent_category != "default":
string_parts.append(self.intent_name)
return string_parts