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 edf1ec5 commit 1537c46Copy full SHA for 1537c46
.ci/code_generation.py
@@ -23,6 +23,8 @@
23
continue
24
if file_path.stem == "translator":
25
26
+ if file_path.stem != "mac":
27
+ continue
28
try:
29
if file_path.is_dir():
30
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