From e689f3dce6317f395fcd89143003fdb772444cb0 Mon Sep 17 00:00:00 2001 From: lcolaholicl Date: Sat, 30 Dec 2017 17:29:27 +0900 Subject: [PATCH] Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit keyworda → keyword --- parso/grammar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parso/grammar.py b/parso/grammar.py index 2cf26d7..e5abf81 100644 --- a/parso/grammar.py +++ b/parso/grammar.py @@ -73,7 +73,7 @@ class Grammar(object): :py:class:`parso.python.tree.Module`. """ if 'start_pos' in kwargs: - raise TypeError("parse() got an unexpected keyworda argument.") + raise TypeError("parse() got an unexpected keyword argument.") return self._parse(code=code, **kwargs) def _parse(self, code=None, error_recovery=True, path=None,