Skip to content
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ executors:
python-container:
docker:
- image: cimg/python:3.12
resource_class: small
resource_class: arangodb/small-amd64
python-vm:
machine:
image: ubuntu-2404:current
Expand All @@ -26,7 +26,7 @@ workflows:
jobs:
lint:
executor: python-container
resource_class: small
resource_class: arangodb/small-amd64
steps:
- checkout
- run:
Expand Down
2 changes: 1 addition & 1 deletion arangoasync/typings.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ def id(self) -> str:

@property
def path(self) -> Optional[str]:
"""The filesystem path of the current database."""
"""The filesystem path of the current database. Removed in ArangoDB 4.0."""
return self._data.get("path")

@property
Expand Down
Loading