fix minor styling issue

This commit is contained in:
Bastien Gérard
2019-12-14 15:39:02 +01:00
parent 6bc4e602bb
commit 9166ba91d7
5 changed files with 8 additions and 5 deletions

View File

@@ -426,7 +426,7 @@ class StrictDict(object):
return listitems(self) == listitems(other)
def __ne__(self, other):
return not(self == other)
return not (self == other)
@classmethod
def create(cls, allowed_keys):