mirror of
https://github.com/pretix/pretix.git
synced 2026-05-03 14:54:04 +00:00
Update flake8 requirement from ==6.0.* to ==7.0.*
This commit is contained in:
@@ -62,7 +62,7 @@ def soft_equals(a, b):
|
||||
|
||||
def hard_equals(a, b):
|
||||
"""Implements the '===' operator."""
|
||||
if type(a) != type(b):
|
||||
if type(a) is not type(b):
|
||||
return False
|
||||
return a == b
|
||||
|
||||
|
||||
Reference in New Issue
Block a user