Skip to content

Commit

Permalink
Merge pull request #175 from TimoDiepers/main
Browse files Browse the repository at this point in the history
add check_typos to IOTableBackend write function
  • Loading branch information
cmutel authored Jul 2, 2024
2 parents d1e3401 + 8b13b65 commit 450705f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bw2data/backends/iotable/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class IOTableBackend(SQLiteBackend):
backend = "iotable"
node_class = IOTableActivity

def write(self, data, process=False, searchable=True):
super().write(data, process=False, searchable=searchable)
def write(self, data, process=False, searchable=True, check_typos=True):
super().write(data, process=False, searchable=searchable, check_typos=check_typos)

def write_exchanges(self, technosphere, biosphere, dependents):
"""
Expand Down

0 comments on commit 450705f

Please sign in to comment.