Skip to content

Commit

Permalink
fix minor typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lionellloh committed Sep 30, 2020
1 parent 4678642 commit 9bf2698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ def __init__(self, func_name: str):
self.offending_func_name: str = func_name

def __str__(self):
return F"A WS connection has not been established. Ensure you call Socket.connect() before calling Socket.{self.offending_func_name}()"
return f"A WS connection has not been established. Ensure you call Socket.connect() before calling Socket.{self.offending_func_name}()"

0 comments on commit 9bf2698

Please sign in to comment.