Skip to content

Commit

Permalink
Merge pull request #69 from pimoroni/patch-sneks-import
Browse files Browse the repository at this point in the history
Sneks: Fix pvgame import.
  • Loading branch information
Gadgetoid authored Oct 12, 2023
2 parents 93db143 + ae31fa7 commit 27584e3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/sneks_and_ladders/sneks_and_ladders.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import time
import pngdec
from picographics import PicoGraphics, PEN_P5
import pvgame
try:
import pvgame
except ImportError:
from sneks_and_ladders import pvgame
import random

t_start = time.ticks_ms()
Expand Down

0 comments on commit 27584e3

Please sign in to comment.