Skip to content

Commit

Permalink
chore: ignore linter print error
Browse files Browse the repository at this point in the history
  • Loading branch information
fabclmnt committed Mar 5, 2025
1 parent 0fe4dbb commit 3180be8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ydata_profiling/utils/information.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def display_banner() -> None:
"""
display(HTML(banner_html))
else:
print(f"\033[1;34m{title}\033[0m") # Bold blue title in terminal
print(info_text)
print(f"Register at {link}")
print(f"\033[1;34m{title}\033[0m") #noqa: T201
print(info_text) #noqa: T201
print(f"Register at {link}") #noqa: T201
_displayed_banner = True

0 comments on commit 3180be8

Please sign in to comment.