Skip to content

Commit cbab757

Browse files
committed
Pylint checks bark about:
raise NotImplemented looks like it should be raise NotImplementedError the former is a constant and the latter is an exception.
1 parent 47904fb commit cbab757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/backends/rdbms_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ def open_connection(self):
209209
210210
Must call self.load_dbschema()
211211
"""
212-
raise NotImplemented
212+
raise NotImplementedError
213213

214214
def sql(self, sql, args=None, cursor=None):
215215
""" Execute the sql with the optional args.

0 commit comments

Comments
 (0)