Skip to content

Commit

Permalink
Merge pull request #64 from nitrictech/chore/release-fixes
Browse files Browse the repository at this point in the history
Release fixes
  • Loading branch information
tjholm authored Oct 10, 2022
2 parents 409d187 + 2f7d705 commit 1468eab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ Read full documentation [here](https://nitrictech.github.io/python-sdk/).

## Getting Started

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

> nitric is included in all python related projects by default
```bash
nitric make:stack
nitric stack new
```

Then select `official/Python Stack`
Expand Down
2 changes: 1 addition & 1 deletion nitric/faas.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ async def _run(self):
response = _create_internal_error_response(srv_msg.trigger_request)
await request_channel.send(ClientMessage(id=srv_msg.id, trigger_response=response))
else:
print("unhandled message type {msg_type}, skipping")
print(f"unhandled message type {msg_type}, skipping")
continue
if request_channel.done():
break
Expand Down
2 changes: 0 additions & 2 deletions nitric/resources/topics.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,6 @@ def subscribe(self, func: EventMiddleware):
self.server.event(func)
Nitric._register_worker(self.server)

# return decorator


def topic(name: str) -> Topic:
"""
Expand Down

0 comments on commit 1468eab

Please sign in to comment.