Skip to content

Commit

Permalink
Merge pull request #9 from kumaranvpl/strage
Browse files Browse the repository at this point in the history
I am strange
  • Loading branch information
kumaranvpl authored Nov 26, 2024
2 parents 766e603 + 99bc5e4 commit 285892d
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pr_lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ jobs:
continue-on-error: true
with:
extra_args: --hook-stage manual --all-files
- run: git status
- run: git diff
- name: Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
Expand Down
1 change: 1 addition & 0 deletions docs/docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,7 @@ search:
- [ContentTypes](api/faststream/constants/ContentTypes.md)
- dummy
- [Dummy](api/faststream/dummy/Dummy.md)
- [Strange](api/faststream/dummy/Strange.md)
- exceptions
- [AckMessage](api/faststream/exceptions/AckMessage.md)
- [FastStreamException](api/faststream/exceptions/FastStreamException.md)
Expand Down
11 changes: 11 additions & 0 deletions docs/docs/en/api/faststream/dummy/Strange.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
# 0.5 - API
# 2 - Release
# 3 - Contributing
# 5 - Template Page
# 10 - Default
search:
boost: 0.5
---

::: faststream.dummy.Strange
13 changes: 13 additions & 0 deletions faststream/dummy.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,16 @@ def __init__(self) -> None:
def dummy_method(self) -> str:
return "dummy"





class Strange:
def __init__(self) -> None:
pass

def strange_method(self) -> str:
return "strange"



0 comments on commit 285892d

Please sign in to comment.