fix minor bug in db.py

This commit is contained in:
randomuser 2021-07-21 00:04:17 -05:00
parent be25f97cbf
commit 615d3850f2
1 changed files with 1 additions and 1 deletions

2
db.py
View File

@ -32,7 +32,7 @@ class DuckDB:
def write(self, location):
fd = open(location, "w")
self.output(fd)
fd.close
fd.close()
class DuckEvent:
def __init__(self, line=None):