ueshin commented on code in PR #41606: URL: https://github.com/apache/spark/pull/41606#discussion_r1254825395
########## python/pyspark/testing/utils.py: ########## @@ -49,6 +59,19 @@ SPARK_HOME = _find_spark_home() +NO_COLOR = "\033[0m" # No Color, reset all +LIGHT_RED = "\033[31m" +LIGHT_BLUE = "\033[34m" + + +def red(s): + return LIGHT_RED + str(s) + NO_COLOR + + +def blue(s): + return LIGHT_BLUE + str(s) + NO_COLOR Review Comment: Seems not used anymore? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
