Skip to content

Commit 1bc9cfa

Browse files
committed
Lint updates
1 parent 5a2d97f commit 1bc9cfa

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/connection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ class Connection extends EventEmitter {
407407
get [Symbol.toStringTag]() {
408408
return fqn;
409409
}
410-
};
410+
}
411411
this._dbObjectClasses[fqn] = cls = DbObject;
412412
cls.prototype.schema = schema;
413413
cls.prototype.name = name;

lib/dbObject.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ class BaseDbObject {
100100
}
101101
const result = {};
102102
for (let name in this.attributes) {
103-
const attr = this.attributes[name];
104103
let value = this[name];
105104
if (value instanceof BaseDbObject) {
106105
value = value._toPojo();

0 commit comments

Comments
 (0)