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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ repos:


- repo: https://github.com/psf/black
rev: 23.12.1 # IF VERSION CHANGES --> MODIFY "blacken-docs" MANUALLY AS WELL!!
rev: 24.1.1 # IF VERSION CHANGES --> MODIFY "blacken-docs" MANUALLY AS WELL!!
hooks:
- id: black
args: [
Expand All @@ -14,7 +14,7 @@ repos:
rev: 1.16.0
hooks:
- id: blacken-docs
additional_dependencies: [black==23.12.1]
additional_dependencies: [black==24.1.1]

- repo: https://github.com/pycqa/isort
rev: 5.13.2
Expand Down
1 change: 1 addition & 0 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sphinx documentation configuration file for the pyansys developer's guide."""

from datetime import datetime
import os

Expand Down
1 change: 1 addition & 0 deletions doc/source/doc-style/code/required_conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sphinx documentation configuration file."""

from datetime import datetime

from ansys_sphinx_theme import pyansys_logo_black as logo
Expand Down
1 change: 1 addition & 0 deletions examples/pyvista_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
After this preamble is complete, the first code block begins. This is where you
typically set up your imports.
"""

import pyvista as pv

###############################################################################
Expand Down