Skip to content

Commit 1bf6b50

Browse files
committed
Fix #44 future deprecation
1 parent f622413 commit 1bf6b50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fuzzylogic/classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ def rule_from_table(table: str, references: dict):
486486

487487
import pandas as pd
488488

489-
df = pd.read_table(io.StringIO(table), delim_whitespace=True)
489+
df = pd.read_table(io.StringIO(table), sep='\s+')
490490

491491
D: dict[tuple[Any, Any], Any] = {
492492
(

0 commit comments

Comments
 (0)