Skip to content

Commit 7dbc7d5

Browse files
Update deprecationService.py
remove unnecessary comments
1 parent 3ad2409 commit 7dbc7d5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

copyleaks/deprecationService.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@
2626
class deprecationService:
2727
@staticmethod
2828
def show_deprecation_message():
29-
# Trace equivalent - using logging
29+
3030
logging.warning("DEPRECATION NOTICE: AI Code Detection will be discontinued on August 29, 2025. Please remove AI code detection integrations before the sunset date.")
3131

32-
# Red colored console output using ANSI escape codes
33-
print("\033[31m", end="") # Red color
32+
33+
print("\033[31m", end="")
3434
print("════════════════════════════════════════════════════════════════════")
3535
print("DEPRECATION NOTICE !!!")
3636
print("AI Code Detection will be discontinued on August 29, 2025.")
3737
print("Please remove AI code detection integrations before the sunset date.")
3838
print("════════════════════════════════════════════════════════════════════")
39-
print("\033[0m", end="") # Reset color
39+
print("\033[0m", end="")

0 commit comments

Comments
 (0)