treewide: reformat

This commit is contained in:
Matt Sturgeon 2024-07-08 16:16:16 +01:00 committed by GaetanLepage
parent 3c786ae988
commit aad2e32b5a
5 changed files with 2111 additions and 20 deletions

View file

@ -67,7 +67,9 @@ class Plugin:
assert False
deprecation_icon: str = "⚠️" if self.dep_warnings else " "
return f"| {kind_icon}\033[0m | {state_icon} | {deprecation_icon} | {self.path}"
return (
f"| {kind_icon}\033[0m | {state_icon} | {deprecation_icon} | {self.path}"
)
def has_deprecation_warnings(string: str) -> bool: