We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3088ea commit 7a85313Copy full SHA for 7a85313
1 file changed
server/python/src/metaobjects/cli.py
@@ -101,7 +101,12 @@ def _cmd_gen(args: argparse.Namespace) -> int:
101
102
103
def _relative_set(root: Path) -> dict[str, str]:
104
- """Map every ``*.py`` file under ``root`` to its content, keyed by rel path."""
+ """Map every ``*.py`` file under ``root`` to its content, keyed by rel path.
105
+
106
+ Scoped to ``*.py`` because the Python codegen suite emits only Python sources;
107
+ if a generator ever emits a non-``.py`` artifact, broaden this glob so ``verify``
108
+ drift-checks it too.
109
+ """
110
files: dict[str, str] = {}
111
if root.exists():
112
for p in sorted(root.rglob("*.py")):
0 commit comments