Special trigger fired when any top-level name is changed in a module. Note that this is different from a module trigger, as module triggers are only fired if the module is created, deleted, or replaced with a non-module, whereas a wildcard trigger is triggered for namespace changes.
(module: str)
| 15 | |
| 16 | |
| 17 | def make_wildcard_trigger(module: str) -> str: |
| 18 | """Special trigger fired when any top-level name is changed in a module. |
| 19 | |
| 20 | Note that this is different from a module trigger, as module triggers are only |
| 21 | fired if the module is created, deleted, or replaced with a non-module, whereas |
| 22 | a wildcard trigger is triggered for namespace changes. |
| 23 | |
| 24 | This is used for "from m import *" dependencies. |
| 25 | """ |
| 26 | return f"<{module}{WILDCARD_TAG}>" |
no outgoing calls
no test coverage detected
searching dependent graphs…