Skip to content

Commit

Permalink
fix: importing pandas if we have them
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Dec 18, 2024
1 parent 37809f6 commit d3a7188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ansys/mapdl/core/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@

from functools import wraps
import re
from typing import TYPE_CHECKING, Any, Callable, Dict, List, Optional, Tuple
from typing import Any, Callable, Dict, List, Optional, Tuple

import numpy as np

from ansys.mapdl.core import _HAS_PANDAS

if TYPE_CHECKING and _HAS_PANDAS:
if _HAS_PANDAS:
import pandas

from ._commands import (
Expand Down

0 comments on commit d3a7188

Please sign in to comment.