Skip to content

docs: minor improvements #1120

New issue

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

Merged
merged 1 commit into from
Apr 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Install YAPF in your local dev environment:

In this repository, Nox is used to automate testing, linting, and to build
documentation. Nox manages virtual environments for you, specifying Python
versions and installing the the local, dynamic version of the Plant SDK for
versions and installing the local, dynamic version of the Planet SDK for
Python and required development packages.

To run nox with the default sessions (same checks as CI: lint, analyze, test,
Expand Down
4 changes: 2 additions & 2 deletions DESIGN.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ operations are supported.

The principles of the interface design, ordered according to priority, are:
* Map the API names and endpoints as close as possible
* Synchronoize the Python API and CLI
* Synchronize the Python API and CLI
* Adhere to command line design in:
* Popular SDKs (aws and gcloud)
* The geospatial toolset (gdal, rasterio)
Expand Down Expand Up @@ -51,5 +51,5 @@ that can be returned at the end of running a Planet CLI command.
| Value | Description |
| ----------- | ----------- |
| 0 | Command was run successfully. |
| 1 | An error occured while the command was running. |
| 1 | An error occurred while the command was running. |
| 2 | Command was not run due to invalid syntax or unknown or invalid parameter.|
2 changes: 1 addition & 1 deletion planet/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ async def throttle(self):
break
elif now - self._last_call >= self.cadence:
LOGGER.debug(
f'Throught throttle, delta: {now - self._last_call}')
f'Through throttle, delta: {now - self._last_call}')
self._last_call = now
break
await asyncio.sleep(self.retry_interval)
Expand Down