We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c2fb04 commit cac2a2dCopy full SHA for cac2a2d
Makefile
@@ -60,8 +60,11 @@ gen-py: $(DEST)
60
# for all the files in the schema folder, run the gen-python command and output the result to the top
61
# level of the project. In other repos, we'd include mergeimports=True, but we don't do that with
62
# linkml-model.
63
+ # extended_types.yaml is excluded because gen-python produces an empty file for it;
64
+ # the schema is not ready for Python code generation yet.
65
@for file in $(wildcard $(PYMODEL)/model/schema/*.yaml); do \
66
base=$$(basename $$file); \
67
+ if [ "$$base" = "extended_types.yaml" ]; then continue; fi; \
68
filename_without_suffix=$${base%.*}; \
69
$(RUN) gen-python --genmeta $$file > $(DEST)/$$filename_without_suffix.py; \
70
done
0 commit comments