Skip to content

Commit

Permalink
Merge pull request #367 from emcek/update_supporters
Browse files Browse the repository at this point in the history
Update supporters banner
  • Loading branch information
emcek authored Sep 16, 2024
2 parents aa22505 + b1c797a commit 124e202
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dcspy/starter.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

LOG = getLogger(__name__)
LOOP_FLAG = True
SUPPORTERS = ['Jon Wardell', 'Simon Leigh', 'Alexander Leschanz', 'Sireyn', 'Nick Thain', 'BrotherBloat']
__version__ = '3.5.2'


Expand All @@ -29,8 +30,7 @@ def _handle_connection(logi_device: LogitechDevice, parser: ProtocolParser, sock
"""
start_time = time()
LOG.info('Waiting for DCS connection...')
support_banner = _supporters(text='Huge thanks to: Simon Leigh, Alexander Leschanz, Sireyn, Nick Thain, BrotherBloat and others! For support and help! ',
width=26)
support_banner = _supporters(text=f'Huge thanks to: {", ".join(SUPPORTERS)} and others! For support and help! ', width=26)
while not event.is_set():
try:
dcs_bios_resp = sock.recv(2048)
Expand Down

0 comments on commit 124e202

Please sign in to comment.