summaryrefslogtreecommitdiff
path: root/astroid/objects.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-09-26 18:13:06 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-09-26 18:13:06 +0300
commitea1d60a4b9adea7949d99c660b22128eb87d0455 (patch)
treeea2e1e53be0ebd205813c9f40a49142c438f1efb /astroid/objects.py
parent4be398afd4285efe21a589aebe41e17a84357721 (diff)
downloadastroid-git-ea1d60a4b9adea7949d99c660b22128eb87d0455.tar.gz
Remove trailing whitespace.
Diffstat (limited to 'astroid/objects.py')
-rw-r--r--astroid/objects.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/astroid/objects.py b/astroid/objects.py
index 5318f439..b11e3bc9 100644
--- a/astroid/objects.py
+++ b/astroid/objects.py
@@ -39,7 +39,7 @@ an AST node and where to use an inference object:
on its own. This is the case for slices for instance, e.g "[2:3:4]".
In this case, trying to write "2:3:4" on its own will fail.
The respective builtin (slice) returns a custom object when inferring
- and not an AST node per se.
+ and not an AST node per se.
"""
@@ -78,7 +78,7 @@ class Slice(node_classes.Slice):
@decorators.cachedproperty
def _proxied(self):
builtins = MANAGER.astroid_cache[BUILTINS]
- return builtins.getattr('slice')[0]
+ return builtins.getattr('slice')[0]
def pytype(self):
return '%s.slice' % BUILTINS