From 615d3850f220470f18597963d1ce9bf230ad1ea1 Mon Sep 17 00:00:00 2001 From: randomuser Date: Wed, 21 Jul 2021 00:04:17 -0500 Subject: [PATCH] fix minor bug in db.py --- db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db.py b/db.py index 1bbbc45..d8468b3 100644 --- a/db.py +++ b/db.py @@ -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):