Skip to content

Commit

Permalink
remote/coordinator: fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Luebbe <[email protected]>
  • Loading branch information
jluebbe committed Jun 13, 2024
1 parent a1ba447 commit af1bd5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion labgrid/remote/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ async def ReleasePlace(self, request, context):
except KeyError:
await context.abort(grpc.StatusCode.FAILED_PRECONDITION, f"Peer {peer} does not have a valid session")
print(request)
fromuser = request.fromuser if request.HasField("fromuser") else None;
fromuser = request.fromuser if request.HasField("fromuser") else None
try:
place = self.places[name]
except KeyError:
Expand Down

0 comments on commit af1bd5c

Please sign in to comment.