Skip to content

Commit

Permalink
fix(fjagepy): fixing __str__ implementation of ParameterReq
Browse files Browse the repository at this point in the history
  • Loading branch information
notthetup committed Jan 14, 2025
1 parent 7270d83 commit 3c32910
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateways/python/fjagepy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ def set(self, param, value):

def __str__(self):
p = ' '.join(
[_short(str(self.param)) + ':' + (str(self.value) if 'value' in self else '?')],
[_short(str(self.param)) + ':' + (str(self.value) if self.value != None else '?')] +
[_short(str(request['param'])) + ':' + (str(request['value']) if 'value' in request else '?') for request in
self.requests])
return self.__class__.__name__ + ':' + self.perf + '[' + (
Expand Down

0 comments on commit 3c32910

Please sign in to comment.