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