Skip to content
This repository was archived by the owner on Aug 31, 2025. It is now read-only.

Commit 709dd04

Browse files
committed
Fix naming collision.
1 parent a4febce commit 709dd04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mu/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def run():
292292
# Create the "window" we'll be looking at.
293293
editor_window = Window()
294294

295-
def splash(app=app, editor_window=editor_window):
295+
def splash_context(app=app, editor_window=editor_window):
296296
"""
297297
Function context (to ensure garbage collection) for displaying the
298298
splash screen.
@@ -321,7 +321,7 @@ def splash(app=app, editor_window=editor_window):
321321
splash.finish(editor_window)
322322
splash.deleteLater()
323323

324-
splash()
324+
splash_context()
325325

326326
@editor_window.load_theme.connect
327327
def load_theme(theme):

0 commit comments

Comments
 (0)