We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
atm, internal imports starts with geoserverx
geoserverx
from geoserverx.models.coverages_layer import CoverageModel from geoserverx.models.coverages_store import CoveragesStoreModel, CoveragesStoresModel
Let's use relative imports instead:
from ..models.coverages_layer import CoverageModel from ..models.coverages_store import CoveragesStoreModel, CoveragesStoresModel
this will help developer to understand what is internal and what is 3rd party dependent.
The text was updated successfully, but these errors were encountered:
#89 raised
Sorry, something went wrong.
krishnaglodha
Successfully merging a pull request may close this issue.
atm, internal imports starts with
geoserverx
Let's use relative imports instead:
this will help developer to understand what is internal and what is 3rd party dependent.
The text was updated successfully, but these errors were encountered: