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 eacedfe commit b0faf24Copy full SHA for b0faf24
.ci/code_generation.py
@@ -25,6 +25,8 @@
25
continue
26
if file_path.stem == "translator":
27
28
+ if file_path.stem != "mac":
29
+ continue
30
try:
31
if file_path.is_dir():
32
shutil.rmtree(file_path)
src/ansys/dpf/core/operators/build.py
@@ -195,6 +195,8 @@ def build_operators():
195
translator = Markdown2RstTranslator()
196
197
for operator_name in available_operators:
198
+ if operator_name != "mac":
199
200
if succeeded == done + 100:
201
done += 100
202
print(f"{done} operators done...")
0 commit comments