Skip to content
Open
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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
repos:

- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.12.0
rev: 26.1.0
hooks:
- id: black

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
to post-processing CFD results.

"""

###############################################################################
# Run the following in command prompt to execute this file:
# exec(open("updated_post_processing_example.py").read())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
# SOFTWARE.

"""Provides a module to check if the library is being used in a Jupyter environment."""

import warnings

from ansys.fluent.core import PyFluentDeprecationWarning
Expand Down
1 change: 1 addition & 0 deletions src/ansys/fluent/visualization/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
"""Configuration variables for visualization."""

from enum import Enum
import os
import warnings
Expand Down
1 change: 1 addition & 0 deletions src/ansys/fluent/visualization/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
# SOFTWARE.

"""Containers for graphics."""

import warnings

from ansys.fluent.core.field_data_interfaces import _to_field_name_str
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
# SOFTWARE.

"""A wrapper to improve the user interface of graphics."""

import ansys.fluent.visualization as pyviz
from ansys.fluent.visualization.graphics import graphics_windows_manager

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
# SOFTWARE.

"""Module for pyVista windows management."""

import numpy as np
import pyvista as pv

Expand Down
1 change: 1 addition & 0 deletions src/ansys/fluent/visualization/renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
# SOFTWARE.

"""A wrapper to improve the user interface of graphics."""

import warnings

from ansys.fluent.interface.post_objects.post_object_definitions import (
Expand Down