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
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [x] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/google-api-python-client/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)
Fixes#1441 🦕
problem on google-api-python-client
describe.py
contains problem which:from googleapiclient.discovery import UnknownApiNameOrVersion
from googleapiclient.errors import HttpError
from collections import OrderedDict
because collections was imported after thatgoogleapiclient/schema.py
contains problem which:import copy
noxfile.py
contains problem which:import sys
steps to fixing the problem
OrderedDict()
to ```collections.OrderedDict()``Thanks!
The text was updated successfully, but these errors were encountered: