Skip to content

Commit 21e3e0f

Browse files
committed
doc: changed to a central issue link
1 parent af3f010 commit 21e3e0f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/ansys/dpf/core/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def load_library(self, file_path, name="", symbol="LoadOperators", generate_oper
427427
)
428428
if generate_operators:
429429
# TODO: fix code generation upload posix
430-
# https://github.com/ansys/pydpf-core/pull/297, todo was added in this PR
430+
# https://github.com/ansys/pydpf-core/issues/1984, todo was added in this PR
431431

432432
def __generate_code(TARGET_PATH, filename, name, symbol):
433433
from ansys.dpf.core.dpf_operator import Operator

src/ansys/dpf/core/fields_container.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ def animate(self, save_as=None, deform_by=None, scale_factor=1.0, **kwargs):
585585
raise ValueError("The fields_container has no time_frequencies.")
586586

587587
# TODO: /!\ We should be using a mechanical::time_selector, however it is not wrapped.
588-
# https://github.com/ansys/pydpf-core/pull/432, todo was added in this PR
588+
# https://github.com/ansys/pydpf-core/issues/1984, todo was added in this PR
589589

590590
wf.set_input_name("indices", extract_field_op.inputs.indices) # Have to do it this way
591591
wf.connect("indices", forward_index) # Otherwise not accepted

src/ansys/dpf/core/help.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def _check_type(instance, allowable_type):
4040

4141

4242
# TODO: deprecate this file
43-
# https://github.com/ansys/pydpf-core/pull/35, todo was added in this PR
43+
# https://github.com/ansys/pydpf-core/issues/1984, todo was added in this PR
4444

4545

4646
def sum(var_inp):
@@ -231,7 +231,7 @@ def eqv(var_inp):
231231

232232

233233
# TODO: Consider combining eqv and eqv_fc
234-
# https://github.com/ansys/pydpf-core/pull/35, todo was added in this PR
234+
# https://github.com/ansys/pydpf-core/issues/1984, todo was added in this PR
235235

236236

237237
def _eqv(field):

src/ansys/dpf/core/server_types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ class BaseServer(abc.ABC):
416416
def __init__(self):
417417
"""Define the base class for all server types, including grpc, in-process, and others."""
418418
# TODO: Use _server_id to compare servers for equality?
419-
# https://github.com/ansys/pydpf-core/pull/297, todo was added in this PR
419+
# https://github.com/ansys/pydpf-core/issues/1984, todo was added in this PR
420420
self._server_id = None
421421
self._session_instance = None
422422
self._base_service_instance = None

0 commit comments

Comments
 (0)