Skip to content

Commit 9062f5c

Browse files
authored
Merge pull request #45 from KebPericles/master
Fix #44 future deprecation
2 parents db2c45c + 1bf6b50 commit 9062f5c

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
@@ -489,7 +489,7 @@ def rule_from_table(table: str, references: dict):
489489

490490
import pandas as pd
491491

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

494494
D: dict[tuple[Any, Any], Any] = {
495495
(

0 commit comments

Comments
 (0)