mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-26 04:04:01 +08:00
12 lines
129 B
Python
12 lines
129 B
Python
import os
|
|
from panda import Panda
|
|
|
|
def test_recover():
|
|
p = Panda()
|
|
p.recover()
|
|
|
|
def test_flash():
|
|
p = Panda()
|
|
p.flash()
|
|
|