File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ More detailed documentation can be found [here](https://docs.qfield.org/referenc
5050## Module usage
5151
5252``` python
53- from qfieldcloud_sdk import sdk
53+ from import sdk
5454
5555client = sdk.Client(url = " https://app.qfield.cloud/api/v1/" )
5656client.login(
Original file line number Diff line number Diff line change 1- from qfieldcloud_sdk .cli import cli
1+ from .cli import cli
22
33if __name__ == "__main__" :
44 cli ()
Original file line number Diff line number Diff line change 55
66import click
77
8- from qfieldcloud_sdk import sdk
9- from qfieldcloud_sdk .utils import log , print_json
8+ from . import sdk
9+ from .utils import log , print_json
1010
1111QFIELDCLOUD_DEFAULT_URL = "https://app.qfield.cloud/api/v1/"
1212
Original file line number Diff line number Diff line change 1010import urllib3
1111from requests .adapters import HTTPAdapter , Retry
1212
13- from qfieldcloud_sdk .interfaces import QfcException , QfcRequest , QfcRequestException
14- from qfieldcloud_sdk .utils import get_numeric_params , log
13+ from .interfaces import QfcException , QfcRequest , QfcRequestException
14+ from .utils import get_numeric_params , log
1515
1616logger = logging .getLogger (__file__ )
1717
You can’t perform that action at this time.
0 commit comments