Skip to content

Commit

Permalink
Fix type check linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
kislyuk committed Dec 2, 2019
1 parent ca1fd9e commit c6b7dec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion signxml/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ def iterate_pem(certs):


class Namespace(dict):
__getattr__ = dict.__getitem__
def __getattr__(self, a):
return dict.__getitem__(self, a)


class XMLProcessor:
Expand Down

0 comments on commit c6b7dec

Please sign in to comment.