Skip to content

Commit 0f7a3c8

Browse files
committed
fix exception
1 parent a67c798 commit 0f7a3c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_algebra/near_sql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def __init__(self, *, terms, quoted_query_name, temp_tables):
1313
self.temp_tables = temp_tables
1414

1515
def to_sql(self, *, columns=None, force_sql=False, constants=None, db_model):
16-
raise NotImplemented("base method called")
16+
raise NotImplementedError("base method called")
1717

1818
def summary(self):
1919
return {"quoted_query_name": self.quoted_query_name, "is_table": False}

0 commit comments

Comments
 (0)