Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dbousque committed Aug 20, 2018
1 parent 79b6705 commit 863d134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srcs/lymp.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def resolve_args(self, args):
for arg in args:
# resolve named args (list of size 2, first one being a bson.code.Code starting with "!")
if type(arg) is list and len(arg) == 2 and type(arg[0]) is bson.code.Code and str(arg[0])[0] == "!":
named[str(arg[0])[1:]] = self.resolve_args([arg[1]])[0][0]
named[str(arg[0])[1:]] = self.resolve_args([arg[1]])[0][0]
del args[i]
continue
# if bytes
Expand Down

0 comments on commit 863d134

Please sign in to comment.