Skip to content

Commit

Permalink
Merge pull request #462 from SuzukiZudaiM/main
Browse files Browse the repository at this point in the history
fix import  for sequence
  • Loading branch information
udayRage authored Jun 19, 2024
2 parents 7b8a68d + d6bbd96 commit df6bdb0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions PAMI/sequentialPattern/basic/PrefixSpan.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

from PAMI.sequentialPatternMining.basic import abstract as _ab
from PAMI.sequentialPattern.basic import abstract as _ab
import sys
sys.setrecursionlimit(10000)

Expand Down
2 changes: 1 addition & 1 deletion PAMI/sequentialPattern/basic/SPADE.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
import pandas as pd
from deprecated import deprecated

from PAMI.sequentialPatternMining.basic import abstract as _ab
from PAMI.sequentialPattern.basic import abstract as _ab

_ab._sys.setrecursionlimit(10000)

Expand Down
2 changes: 1 addition & 1 deletion PAMI/sequentialPattern/basic/SPAM.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
import pandas as pd
from deprecated import deprecated

from PAMI.sequentialPatternMining.basic import abstract as _ab
from PAMI.sequentialPattern.basic import abstract as _ab
_ab._sys.setrecursionlimit(10000)

class SPAM(_ab._sequentialPatterns):
Expand Down

0 comments on commit df6bdb0

Please sign in to comment.