Skip to content
This repository has been archived by the owner on Apr 21, 2021. It is now read-only.

WIP: Node split #15

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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: 4 additions & 0 deletions pydiggy/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ class Node(metaclass=NodeMeta):
_instances = dict()
_staged = dict()

# uid is not used as a class variable, it is part of the required
# schema of a Node, and is thus part of the superclass.
uid : int
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice documentation 💪


@classmethod
def _get_staged(cls):
return cls._staged
Expand Down