We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ed217 commit 5318cb2Copy full SHA for 5318cb2
.github/workflows/project-creation.yaml
@@ -97,9 +97,6 @@ jobs:
97
if [ "${{ matrix.example }}" != "no-example" ]; then
98
cp -r ../sdk/examples/${{ matrix.example }}/* ../app/app
99
fi
100
- # And we do not want a requirement file from a previous version
101
- # then we might get conflicts
102
- # cp ../sdk/requirements.txt .
103
104
- name: Install dependencies
105
shell: bash
velocitas_sdk/native/middleware.py
@@ -37,7 +37,7 @@ def __init__(self) -> None:
37
print("No hostname")
38
sys.exit(-1)
39
40
- self.pubsub_client = MqttClient(_hostname, _port)
+ self.pubsub_client = MqttClient(hostname=_hostname, port=_port)
41
42
async def start(self):
43
pass
0 commit comments