mirror of
https://github.com/logos-storage/nim-datastore.git
synced 2026-01-02 13:43:11 +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:
|
||||
if s == store: break
|
||||
if(
|
||||
let res = await s.put(key, bytes); res.isErr):
|
||||
let res = (await s.put(key, bytes));
|
||||
res.isErr):
|
||||
return failure res.error
|
||||
|
||||
return success bytes
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user