-
Notifications
You must be signed in to change notification settings - Fork 24
move classes in transactions.py to core.py, to align with parent class organization #67
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
Conversation
README.md
Outdated
|
||
```shell | ||
cd stac_fastapi/elasticsearch | ||
pip install -e .[dev] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this command was missing the -e
, so changes to the code weren't reflected in the IDE.
@@ -6,6 +6,7 @@ | |||
desc = f.read() | |||
|
|||
install_requires = [ | |||
"fastapi", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was used explicitly in one of the classes, but wasn't declared as a dependency (it's transitive from stac_fastapi)
|
||
|
||
@attr.s | ||
class TransactionsClient(BaseTransactionsClient): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no changes to these classes other than fixing up references and using datetime_type
rather than datetime
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor doc nit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice
Co-authored-by: Pete Gadomski <[email protected]>
Related Issue(s):
Description:
move classes in transactions.py to core.py, to align with parent class organization
PR Checklist:
pre-commit run --all-files
)make test
)make docs
)