Skip to content

Commit f91e597

Browse files
committed
spelling: attribute
1 parent 21aa1fe commit f91e597

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bpython/curtsiesfrontend/manual_readline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def add(self, key, func, overwrite=False):
5656

5757
def add_config_attr(self, config_attr, func):
5858
if config_attr in self.awaiting_config:
59-
raise ValueError('config attrribute %r already has a mapping' %
59+
raise ValueError('config attribute %r already has a mapping' %
6060
(config_attr,))
6161
self.awaiting_config[config_attr] = func
6262

bpython/test/test_simpleeval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def __getattr__(self, attr):
170170

171171
class OverridenGetattribute(object):
172172
def __getattribute__(self, attr):
173-
raise AssertionError('custom __getattrribute__ executed')
173+
raise AssertionError('custom __getattribute__ executed')
174174
a = 1
175175

176176

0 commit comments

Comments
 (0)