Skip to content

Commit

Permalink
Solves will8211#56
Browse files Browse the repository at this point in the history
Solves will8211#56

On newer python there are some warnings about the way some strings are used.
  • Loading branch information
fcolecumberri authored May 9, 2024
1 parent da18dfa commit 910445b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions unimatrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import time
from random import choice, randint

help_msg = '''
help_msg = r'''
USAGE
unimatrix [-a] [-b] [-c COLOR] [-f] [-g COLOR] [-h] [-l CHARACTER_LIST] [-n]
[-o] [-s SPEED] [-u CUSTOM_CHARACTERS]
Expand Down Expand Up @@ -228,13 +228,13 @@
'1234567890-=*_+|:<>"-=*_+|:<>"-=*_+|:<>"-=*_+|:<>"',
'n': '1234567890',
'o': 'qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890'
'`-=~!@#$%^&*()_+[]{}|\;\':",./<>?"',
r'`-=~!@#$%^&*()_+[]{}|\;\':",./<>?"',
'p': '',
'P': '',
'r': 'mcclllxxxxvvvvviiiiii',
'R': 'MCCLLLXXXXVVVVVIIIIII',
's': '-=*_+|:<>"',
'S': '`-=~!@#$%^&*()_+[]{}|\;\':",./<>?"',
'S': r'`-=~!@#$%^&*()_+[]{}|\;\':",./<>?"',
'u': args.custom_characters}

colors_str = {
Expand Down

0 comments on commit 910445b

Please sign in to comment.