fix invalid identation on nim 1.6.6

This commit is contained in:
Dmitriy Ryajov 2022-09-19 22:31:24 -06:00
parent 1dfc30f64a
commit 68f3f86cd9
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4

View File

@ -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