9 lines
109 B
Python
9 lines
109 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# import serial
|
||
|
|
||
|
from . import BaseSource
|
||
|
|
||
|
|
||
|
class SerialSource(BaseSource):
|
||
|
pass
|