mirror of
https://github.com/meshtastic/python.git
synced 2026-01-18 04:37:59 -05:00
0.7.6 for #2
This commit is contained in:
@@ -310,7 +310,7 @@ class MeshInterface:
|
||||
if nodeNum in self._nodesByNum:
|
||||
return self._nodesByNum[nodeNum]
|
||||
else:
|
||||
n = { num: n } # Create a minimial node db entry
|
||||
n = { "num": nodeNum } # Create a minimial node db entry
|
||||
self._nodesByNum[nodeNum] = n
|
||||
return n
|
||||
|
||||
@@ -807,7 +807,7 @@ debugOut</p>
|
||||
if nodeNum in self._nodesByNum:
|
||||
return self._nodesByNum[nodeNum]
|
||||
else:
|
||||
n = { num: n } # Create a minimial node db entry
|
||||
n = { "num": nodeNum } # Create a minimial node db entry
|
||||
self._nodesByNum[nodeNum] = n
|
||||
return n
|
||||
|
||||
|
||||
2
setup.py
2
setup.py
@@ -10,7 +10,7 @@ with open("README.md", "r") as fh:
|
||||
# This call to setup() does all the work
|
||||
setup(
|
||||
name="meshtastic",
|
||||
version="0.7.5",
|
||||
version="0.7.6",
|
||||
description="Python API & client shell for talking to Meshtastic devices",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
|
||||
Reference in New Issue
Block a user