Skip to content

Commit

Permalink
fix: missing > in FileSystemEvent.__repr__() (#980)
Browse files Browse the repository at this point in the history
  • Loading branch information
agroszer committed Mar 20, 2023
1 parent 1838e0b commit 9fc1ce2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/watchdog/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def __str__(self):
def __repr__(self):
return (
f"<{type(self).__name__}: event_type={self.event_type}, "
f"src_path={self.src_path!r}, is_directory={self.is_directory}"
f"src_path={self.src_path!r}, is_directory={self.is_directory}>"
)

# Used for comparison of events.
Expand Down

0 comments on commit 9fc1ce2

Please sign in to comment.