Skip to content

Commit

Permalink
fix #324
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouxian committed Dec 26, 2024
1 parent 66e3f84 commit 163e413
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions genesis/ext/pyrender/viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@

from tkinter import Tk
from tkinter import filedialog
root = Tk()
root.withdraw()
try:
root = Tk()
root.withdraw()
except:
pass

import pyglet
from moviepy.video.io.ffmpeg_writer import FFMPEG_VideoWriter
Expand Down

0 comments on commit 163e413

Please sign in to comment.