Skip to content

Commit 1468eab

Browse files
authored
Merge pull request #64 from nitrictech/chore/release-fixes
Release fixes
2 parents 409d187 + 2f7d705 commit 1468eab

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ Read full documentation [here](https://nitrictech.github.io/python-sdk/).
2020

2121
## Getting Started
2222

23-
### Using the [Nitric CLI](https://github.com/nitric-tech/cli)
23+
### Using the [Nitric CLI](https://github.com/nitrictech/cli)
2424

2525
> nitric is included in all python related projects by default
2626
2727
```bash
28-
nitric make:stack
28+
nitric stack new
2929
```
3030

3131
Then select `official/Python Stack`

nitric/faas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ async def _run(self):
493493
response = _create_internal_error_response(srv_msg.trigger_request)
494494
await request_channel.send(ClientMessage(id=srv_msg.id, trigger_response=response))
495495
else:
496-
print("unhandled message type {msg_type}, skipping")
496+
print(f"unhandled message type {msg_type}, skipping")
497497
continue
498498
if request_channel.done():
499499
break

nitric/resources/topics.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,6 @@ def subscribe(self, func: EventMiddleware):
105105
self.server.event(func)
106106
Nitric._register_worker(self.server)
107107

108-
# return decorator
109-
110108

111109
def topic(name: str) -> Topic:
112110
"""

0 commit comments

Comments
 (0)