Skip to content
Snippets Groups Projects
Verified Commit 842043cd authored by dos's avatar dos
Browse files

Rename internal comms module to _ph

parent 590f90b9
No related branches found
No related tags found
No related merge requests found
...@@ -9,9 +9,9 @@ try: ...@@ -9,9 +9,9 @@ try:
except ImportError: except ImportError:
sd_card_present = lambda: False sd_card_present = lambda: False
try: try:
import ph import _ph
except ImportError: except ImportError:
ph = None _ph = None
VERSION = "0.0" VERSION = "0.0"
...@@ -125,5 +125,5 @@ def volume(app, vol): ...@@ -125,5 +125,5 @@ def volume(app, vol):
app.blm.volume = vol app.blm.volume = vol
def emit(*args, **kwargs): def emit(*args, **kwargs):
if ph and ph.emit: if _ph and _ph.emit:
ph.emit(*args, **kwargs) _ph.emit(*args, **kwargs)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment