Skip to content

Commit

Permalink
Update helpers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mfouesneau authored Sep 2, 2024
1 parent b162315 commit 63689e3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pystellibs/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
"""
import sys
from functools import partial, wraps, update_wrapper
from inspect import getargspec, ismethod
try
from inspect import getargspec
except ImportError: # Apparently since py3.11
from inspect import getfullargspec as getargspec
from inspect import ismethod
import warnings
import numpy as np
import itertools
Expand Down

0 comments on commit 63689e3

Please sign in to comment.