Skip to content

Commit 222da94

Browse files
committed
fix syntax error from previous
1 parent 713c104 commit 222da94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/vizier/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ def _args_to_payload(self, *args, **kwargs):
538538
columns = self.columns + columns
539539
# filter columns to _unique_ columns, preserving order in python >3.6
540540
# note that "set" does not preserve order, but dict.keys does
541-
columns = list(dict(columns).keys())
541+
columns = list(dict.fromkeys(columns, ).keys())
542542

543543
# special keywords need to be treated separately
544544
# keyword names that can mean 'all'

0 commit comments

Comments
 (0)