Skip to content

Commit

Permalink
[typo] Fix minor typo in raise TypeError Closes #151
Browse files Browse the repository at this point in the history
Fix #151
  • Loading branch information
fredrikblau committed May 29, 2020
1 parent 9adc849 commit 60537ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netjsonconfig/backends/base/backend.py
Expand Up @@ -62,7 +62,7 @@ def _load(self, config):
pass
if not isinstance(config, dict):
raise TypeError(
'config block must be an istance ' 'of dict or a valid NetJSON string'
'config block must be an instance of dict or a valid NetJSON string'
)
return config

Expand Down

0 comments on commit 60537ad

Please sign in to comment.