Aviv Eyal
Aviv Eyal
pls use a syntax that looks like python, so that various tools that highlight/parse python don't break: ``` Foo = gql(''' .... ''') ``` some parsers/tools/highlighters might freak out over...
I would like for all tools - esp lints - to run on _source code_ (i.e., what the user actually types) rather then generated code; mypy only works on the...
If mypy sees the generated code, it might show up errors that don't make sense to the user; I'm sort-of guessing the generated code should end up being just `GetFilm...
Like we talked offline - for some things (like "exactly 1 space before `=`") we want the tool to see the original code, and for others (static typing) to see...
As long as pylint (etc) doesn't mind (and I guess it won't, because the code creating this is out-of-scope), it's probably fine.