Skip to content

Commit 5318cb2

Browse files
committed
Cleanup
1 parent 13ed217 commit 5318cb2

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/project-creation.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,6 @@ jobs:
9797
if [ "${{ matrix.example }}" != "no-example" ]; then
9898
cp -r ../sdk/examples/${{ matrix.example }}/* ../app/app
9999
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 .
103100
104101
- name: Install dependencies
105102
shell: bash

velocitas_sdk/native/middleware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(self) -> None:
3737
print("No hostname")
3838
sys.exit(-1)
3939

40-
self.pubsub_client = MqttClient(_hostname, _port)
40+
self.pubsub_client = MqttClient(hostname=_hostname, port=_port)
4141

4242
async def start(self):
4343
pass

0 commit comments

Comments
 (0)