Skip to content

Commit

Permalink
fix variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
p-ferreira committed Aug 31, 2023
1 parent 3cc8923 commit 1f3dfb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openvalidators/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ async def run_forward():
self.prev_block = ttl_get_block(self)
self.step += 1

except Exception as e:
bt.logging.error("Error in training loop", str(e))
except Exception as err:
bt.logging.error("Error in training loop", str(err))
bt.logging.debug(print_exception(type(err), err, err.__traceback__))

0 comments on commit 1f3dfb1

Please sign in to comment.