mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-23 20:43:53 +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()
|
|
|