Skip to content

Commit

Permalink
Fix indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Nov 11, 2023
1 parent b611c8c commit 71aa3c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stgpytools/types/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ def __setattr__(self, key: str, value: Any) -> None:
if key in self.__dict__:
obj = self.__dict__.get(key)

if obj and type(obj) is classproperty:
return obj.__set__(self, value)
if obj and type(obj) is classproperty:
return obj.__set__(self, value)

return super(classproperty.metaclass, self).__setattr__(key, value)

Expand Down

0 comments on commit 71aa3c9

Please sign in to comment.