Skip to content

Commit

Permalink
✏️ Remove odd " in warning unknown link type
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNitroG committed Feb 26, 2024
1 parent 5505423 commit 03c856f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/modules/link_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,5 @@ def parse(self) -> list[Link]:
)
sleep(0.1) # Sleep to avoid same folder name in any case
case _:
logger.warning(
msg=f'Unknown link type for: " "{link.original_link}"'
)
logger.warning(msg=f'Unknown link type for: "{link.original_link}"')
return modified_links

0 comments on commit 03c856f

Please sign in to comment.