Skip to content

Commit c6b7dec

Browse files
committed
Fix type check linter error
1 parent ca1fd9e commit c6b7dec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

signxml/util/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ def iterate_pem(certs):
116116

117117

118118
class Namespace(dict):
119-
__getattr__ = dict.__getitem__
119+
def __getattr__(self, a):
120+
return dict.__getitem__(self, a)
120121

121122

122123
class XMLProcessor:

0 commit comments

Comments
 (0)