Skip to content

Commit

Permalink
Merge pull request #45 from KebPericles/master
Browse files Browse the repository at this point in the history
Fix #44 future deprecation
  • Loading branch information
amogorkon committed May 23, 2024
2 parents db2c45c + 1bf6b50 commit 9062f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fuzzylogic/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def rule_from_table(table: str, references: dict):

import pandas as pd

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

D: dict[tuple[Any, Any], Any] = {
(
Expand Down

0 comments on commit 9062f5c

Please sign in to comment.