Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[flake8]
exclude = venv, __init__.py, doc/_build, .venv, ansys/hps/client/rms/models.py, generate_resources.py
exclude = venv, __init__.py, doc/_build, .venv, src/ansys/hps/client/rms/models.py, generate_resources.py
select = W191, W291, W293, W391, E115, E117, E122, E124, E125, E225, E231, E301, E303, E501, F401, F403, N801, N802, N803, N804, N805, N806, N807, N815, N816
count = True
max-complexity = 10
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ The PyHPS documentation contains these sections:
- `Contribute <https://rep.docs.pyansys.com/dev/contribute.html>_`: Provides information on
how to install PyHPS in developer mode and make contributions to the codebase.

On the `PyHPS Issues <https://github.com/ansys-internal/pyhps/issues>` page, you can
On the `PyHPS Issues <https://github.com/ansys-internal/pyhps/issues>`_ page, you can
create issues to report bugs and request new features. On the
`PyHPS Discussions <https://github.com/ansys-internal/pyhps/discussions>`_ page or the
`Discussions <https://discuss.ansys.com/>`_ page on the Ansys Developer portal,
Expand All @@ -84,7 +84,7 @@ PyHPS is licensed under the MIT license.
PyHPS makes no commercial claim over Ansys whatsoever. This library extends the
functionality of Ansys HPC Platform Services by adding a Python interface to it
without changing the core behavior or license of the original software. The use
of PyHPS requires a legally licensed local copy of AEDT.
of PyHPS requires a legally licensed local copy of Ansys HPC Platform Services.

To get a copy of AEDT, see the `Ansys HPC Platform Services Guide <https://ansyshelp.ansys.com/account/secured?returnurl=/Views/Secured/hpcplat/v000/en/rep_ug/rep_ug.html>`_`
To get a copy of Ansys HPC Platform Services, see the `Ansys HPC Platform Services Guide <https://ansyshelp.ansys.com/account/secured?returnurl=/Views/Secured/hpcplat/v000/en/rep_ug/rep_ug.html>`_
in the Ansys Help.
2 changes: 1 addition & 1 deletion doc/source/contribute.rst
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ data model generator with this command:

.. code:: bash

datamodel-codegen --input .\rms_openapi.json --input-file-type openapi --output ansys/hps/client/rms/models.py --output-model-type pydantic_v2.BaseModel
datamodel-codegen --input .\rms_openapi.json --input-file-type openapi --output src/ansys/hps/client/rms/models.py --output-model-type pydantic_v2.BaseModel

Post issues
-----------
Expand Down
Loading