Skip to content

Commit

Permalink
add missing importDec
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmkrieger committed Sep 19, 2024
1 parent da775e1 commit e1bf722
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
6 changes: 2 additions & 4 deletions prody/tests/dynamics/test_lda.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
import numpy as np
from numpy import arange
from numpy.testing import *
try:
import numpy.testing.decorators as dec
except ModuleNotFoundError:
from numpy.testing import dec
from prody.utilities import importDec
dec = importDec()

from prody import *
from prody import LOGGER
Expand Down
6 changes: 2 additions & 4 deletions prody/tests/proteins/test_fixer.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
"""This module contains unit tests for :mod:`~prody.proteins`."""

from numpy.testing import *
try:
import numpy.testing.decorators as dec
except ModuleNotFoundError:
from numpy.testing import dec
from prody.utilities import importDec
dec = importDec()

from prody import *
from prody import LOGGER
Expand Down
6 changes: 2 additions & 4 deletions prody/tests/proteins/test_waterbridges.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@

import numpy as np
from numpy.testing import *
try:
import numpy.testing.decorators as dec
except ModuleNotFoundError:
from numpy.testing import dec
from prody.utilities import importDec
dec = importDec()

from prody import *
from prody import LOGGER
Expand Down

0 comments on commit e1bf722

Please sign in to comment.