Remove semicolon
This commit is contained in:
parent
52bbe9d429
commit
3770d0d1a0
|
@ -56,8 +56,8 @@ method modify*(self: SQLiteDatastore, key: Key, fn: ModifyAsync): Future[?!void]
|
||||||
return failure("Error running modify function: " & err.msg)
|
return failure("Error running modify function: " & err.msg)
|
||||||
|
|
||||||
if maybeCurrentData == maybeNewData:
|
if maybeCurrentData == maybeNewData:
|
||||||
# no need to change any stored value
|
# no need to change currently stored value
|
||||||
break;
|
break
|
||||||
|
|
||||||
if err =? self.db.beginStmt.exec().errorOption:
|
if err =? self.db.beginStmt.exec().errorOption:
|
||||||
return failure(err)
|
return failure(err)
|
||||||
|
|
Loading…
Reference in New Issue