(self, state, overwrite)
| 1544 | self.load_keys = None |
| 1545 | |
| 1546 | def add_state(self, state, overwrite): |
| 1547 | # the states for a polymorphic load here are all shared |
| 1548 | # within a single PostLoad object among multiple subtypes. |
| 1549 | # Filtering of callables on a per-subclass basis needs to be done at |
| 1550 | # the invocation level |
| 1551 | self.states[state] = overwrite |
| 1552 | |
| 1553 | def invoke(self, context, path): |
| 1554 | if not self.states: |