You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gql internally uses isinstance(x, io.IOBase) to see if a value is a file-like. On macOS this is True for tempfile.TemporaryFile but on Windows this is False, which breaks the CLI.
The text was updated successfully, but these errors were encountered:
Downgrading to 0.2.23 is no longer an option because the service now requires 1.0+. @mdwelsh can you take a look? We might just need to switch to NamedTemporaryFile
gql
internally usesisinstance(x, io.IOBase)
to see if a value is a file-like. On macOS this isTrue
fortempfile.TemporaryFile
but on Windows this isFalse
, which breaks the CLI.The text was updated successfully, but these errors were encountered: