fix minor bug in db.py
This commit is contained in:
parent
be25f97cbf
commit
615d3850f2
2
db.py
2
db.py
|
@ -32,7 +32,7 @@ class DuckDB:
|
||||||
def write(self, location):
|
def write(self, location):
|
||||||
fd = open(location, "w")
|
fd = open(location, "w")
|
||||||
self.output(fd)
|
self.output(fd)
|
||||||
fd.close
|
fd.close()
|
||||||
|
|
||||||
class DuckEvent:
|
class DuckEvent:
|
||||||
def __init__(self, line=None):
|
def __init__(self, line=None):
|
||||||
|
|
Loading…
Reference in New Issue