mirror of
https://github.com/logos-storage/nim-datastore.git
synced 2026-01-05 23:23:10 +00:00
fix invalid identation on nim 1.6.6
This commit is contained in:
parent
1dfc30f64a
commit
68f3f86cd9
@ -71,7 +71,8 @@ method get*(
|
|||||||
for s in self.stores:
|
for s in self.stores:
|
||||||
if s == store: break
|
if s == store: break
|
||||||
if(
|
if(
|
||||||
let res = await s.put(key, bytes); res.isErr):
|
let res = (await s.put(key, bytes));
|
||||||
|
res.isErr):
|
||||||
return failure res.error
|
return failure res.error
|
||||||
|
|
||||||
return success bytes
|
return success bytes
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user