We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1a48a7 commit 77e05e3Copy full SHA for 77e05e3
seleniumbase/console_scripts/sb_print.py
@@ -574,7 +574,9 @@ def main():
574
the_code = rich_helper.fix_emoji_spacing(the_code)
575
the_theme = "monokai"
576
platform = sys.platform
577
- if "win32" in platform or "win64" in platform or "x64" in platform:
+ if file_to_print.split(os.sep)[-1].startswith("."):
578
+ the_theme = "tango"
579
+ elif "win32" in platform or "win64" in platform or "x64" in platform:
580
the_theme = "abap"
581
582
magic_syntax = rich_helper.process_syntax(
0 commit comments