Skip to content

Commit c3a1db8

Browse files
committed
Fixed code
1 parent f383585 commit c3a1db8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

graphics/interactive_3d_renderer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,8 @@ class GraphicsWindow:
315315
Examples:
316316
>>> import os
317317
>>> if os.environ.get("DISPLAY") or os.name == "nt":
318-
... win = GraphicsWindow(width=200, height=100)
319-
... isinstance(win, GraphicsWindow)
318+
... win = GraphicsWindow(width=200, height=100) # doctest: +SKIP
319+
... isinstance(win, GraphicsWindow) # doctest: +SKIP
320320
True
321321
322322
Interactive controls:

0 commit comments

Comments
 (0)