Fix improperly placed comment

This commit is contained in:
Trysdyn Black 2022-10-30 08:52:13 -07:00
parent 12081d83ff
commit 603fad46f9

View file

@ -8,6 +8,7 @@ import tkinter
from tkinter import filedialog from tkinter import filedialog
# Hide Pygame "Hello world" stuff. Why does this require an envvar :/
os.environ["PYGAME_HIDE_SUPPORT_PROMPT"] = "1" os.environ["PYGAME_HIDE_SUPPORT_PROMPT"] = "1"
import pygame import pygame
from pygame.locals import * from pygame.locals import *
@ -280,8 +281,6 @@ class Tube:
if __name__ == "__main__": if __name__ == "__main__":
# Hide Pygame "Hello world" stuff. Why does this require an envvar :/
# I use some not-great extreme shorthand in the main loop here: # I use some not-great extreme shorthand in the main loop here:
# c = config object # c = config object
# a = audio subsystem object # a = audio subsystem object