Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CyanLight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fxk8y
CyanLight
Commits
b366507d
Commit
b366507d
authored
2 years ago
by
fxk8y
Browse files
Options
Downloads
Patches
Plain Diff
Reordering import
parent
5969b0f4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SiliconTorch/MQTT.py
+9
-1
9 additions, 1 deletion
SiliconTorch/MQTT.py
with
9 additions
and
1 deletion
SiliconTorch/MQTT.py
+
9
−
1
View file @
b366507d
from
typing
import
Callable
import
yaml
import
json
import
random
import
logging
import
paho.mqtt.client
as
mqtt
from
typing
import
Callable
########################################
#### ####
...
...
@@ -372,6 +373,13 @@ class SpiderMQTT:
return
self
.
connected
def
publish
(
self
,
topic
,
payload
=
None
,
qos
=
0
,
retain
=
False
,
prettyPrintYAML
=
False
)
->
None
:
# ######################################################
# ### USE issubclass(…) INSTEAD AND TEST FOR IT!!! ###
# ######################################################
# what we did here is bad style and contrary to what we want to achieve :/
if
isinstance
(
payload
,
str
):
pl
=
payload
.
encode
(
'
utf-8
'
)
elif
isinstance
(
payload
,
(
bool
,
int
,
float
,
complex
)):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment