def welcome(self):
"""Displays a welcome message."""
if not self.curses:
if not self.test:
print('Welcome to Google Py Music!')
return
try:
self.main.addstr(
5, int(crs.COLS / 2) - 13, 'Welcome to Google Py Music!'
)
self.main.refresh()
except: # If this errors for some reason, just don't display anything.
pass
评论列表
文章目录