Skip to content

Commit

Permalink
Get rid of warning on tests on python 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Mar 25, 2024
1 parent 65fd91f commit bca9198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@

if __name__ == '__main__':
from peewee import print_
print_("""\033[1;31m
print_(r"""\x1b[1;31m
______ ______ ______ __ __ ______ ______
/\ == \ /\ ___\ /\ ___\ /\ \ _ \ \ /\ ___\ /\ ___\\
\ \ _-/ \ \ __\ \ \ __\ \ \ \/ ".\ \ \ \ __\ \ \ __\\
\ \_\ \ \_____\ \ \_____\ \ \__/".~\_\ \ \_____\ \ \_____\\
\/_/ \/_____/ \/_____/ \/_/ \/_/ \/_____/ \/_____/
\033[0m""")
\x1b[0m""")
unittest.main(argv=sys.argv)

0 comments on commit bca9198

Please sign in to comment.