Skip to content

Commit

Permalink
show session in logic_row.__str__()
Browse files Browse the repository at this point in the history
  • Loading branch information
valhuber committed Feb 9, 2021
1 parent 51ee4a8 commit 74a8927
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions logic_bank/exec_row_logic/logic_row.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ def __str__(self):
else:
result += str(value)
result += f' row@: {str(hex(id(self.row)))}'
result += f' session@: {str(hex(id(self.session)))}'
return result # str(my_dict)

def log(self, msg: str) -> str:
Expand Down

0 comments on commit 74a8927

Please sign in to comment.