Skip to content

Commit ec69767

Browse files
committed
Fix color contrast issues during "sbase print FILE"
1 parent 64d77db commit ec69767

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

seleniumbase/console_scripts/sb_print.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ def main():
9191
code_lang = "java"
9292
elif file_to_print.lower().endswith(".feature"):
9393
code_lang = "gherkin"
94+
elif file_to_print.lower().endswith(".txt"):
95+
code_lang = "javascript"
96+
elif file_to_print.lower().endswith(".yml"):
97+
code_lang = "javascript"
9498
elif file_to_print.lower().endswith(".in"):
9599
code_lang = "javascript"
96100
elif "." not in file_to_print:

0 commit comments

Comments
 (0)