made package
This commit is contained in:
parent
2f0e6ae895
commit
0331bd7df7
4 changed files with 36 additions and 3 deletions
|
|
@ -2,6 +2,7 @@ import os
|
|||
import glob
|
||||
|
||||
from .loratransmit import *
|
||||
from .RNode import RNodeInterface
|
||||
|
||||
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
|
||||
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
import sys
|
||||
import select
|
||||
import argparse
|
||||
from RNode import RNodeInterface
|
||||
from .RNode import RNodeInterface
|
||||
|
||||
def packetize(str):
|
||||
utf8_bytes = str.encode('utf-8')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue