-
Notifications
You must be signed in to change notification settings - Fork 1
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
[#188] WIP - Implementation of get_atom() using the cache #196
Conversation
@@ -196,13 +188,13 @@ def _build_node(self, node_params: NodeParamsT) -> tuple[str, NodeT]: | |||
|
|||
node: NodeT = { | |||
FieldNames.ID_HASH: handle, | |||
"handle": handle, |
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.
Review here
message='Nonexistent atom', | ||
details=f'handle: {handle}', | ||
) | ||
if not kwargs.get("no_target_format", False): |
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.
Review here
@@ -1,90 +1,105 @@ | |||
[ | |||
{ | |||
"_id": "af12f10f9ae2002a1607ba0b47ba8407", | |||
"handle": "af12f10f9ae2002a1607ba0b47ba8407", |
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.
Review here (similar lines below)
WIP of #188