summaryrefslogtreecommitdiffstats
path: root/pgcli/packages/parseutils/tables.py
diff options
context:
space:
mode:
Diffstat (limited to 'pgcli/packages/parseutils/tables.py')
-rw-r--r--pgcli/packages/parseutils/tables.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pgcli/packages/parseutils/tables.py b/pgcli/packages/parseutils/tables.py
index 0ec3e69..aaa676c 100644
--- a/pgcli/packages/parseutils/tables.py
+++ b/pgcli/packages/parseutils/tables.py
@@ -42,8 +42,7 @@ def extract_from_part(parsed, stop_at_punctuation=True):
for item in parsed.tokens:
if tbl_prefix_seen:
if is_subselect(item):
- for x in extract_from_part(item, stop_at_punctuation):
- yield x
+ yield from extract_from_part(item, stop_at_punctuation)
elif stop_at_punctuation and item.ttype is Punctuation:
return
# An incomplete nested select won't be recognized correctly as a