Closed
Description
Consider (this stands in for a longer example :-):
vars = {"table": "Users"}
sql = dict(vars,
cols="username")
This currently gives an error due to #984. So I want to add # type: ignore
. Unfortunately this doesn't work:
sql = dict(vars,
cols="username") # type: ignore
Instead I must use this:
sql = dict(vars, # type: ignore
cols="username")
which is a little unintuitive.