diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-31 12:55:00 +0800 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-31 12:56:28 +0800 |
commit | 5fd5aa81483e709cb5c464c7d4bb37c8c39f2afa (patch) | |
tree | cfd45af86bbc534168146c0cd5847dc3f63cc275 /astroid/arguments.py | |
parent | c62742e32213e1da979bb5e7f3d1cec55fbb5d99 (diff) | |
download | astroid-git-5fd5aa81483e709cb5c464c7d4bb37c8c39f2afa.tar.gz |
Replace some for statements with yield from
Diffstat (limited to 'astroid/arguments.py')
-rw-r--r-- | astroid/arguments.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/astroid/arguments.py b/astroid/arguments.py index 508f4f85..d0eb40e8 100644 --- a/astroid/arguments.py +++ b/astroid/arguments.py @@ -12,7 +12,6 @@ from astroid import nodes from astroid import util - class CallSite(object): """Class for understanding arguments passed into a call site |