Skip to content

Commit

Permalink
Merge pull request #13 from kumaranvpl/double
Browse files Browse the repository at this point in the history
Double the changes, double the fun
  • Loading branch information
kumaranvpl authored Nov 26, 2024
2 parents 83ec535 + 8eb8b61 commit 8cf520b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:
contents: write

jobs:
check-docs-changes:
check-linting-and-docs-changes:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions docs/docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -582,6 +582,7 @@ search:
- constants
- [ContentTypes](api/faststream/constants/ContentTypes.md)
- dummy
- [Double](api/faststream/dummy/Double.md)
- [Dummy](api/faststream/dummy/Dummy.md)
- [Strange](api/faststream/dummy/Strange.md)
- [Twice](api/faststream/dummy/Twice.md)
Expand Down
11 changes: 11 additions & 0 deletions docs/docs/en/api/faststream/dummy/Double.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.Double
8 changes: 8 additions & 0 deletions faststream/dummy.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,11 @@ def __init__(self) -> None:

def twice_method(self) -> str:
return "twice"


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

def double_method(self) -> str:
return "double"

0 comments on commit 8cf520b

Please sign in to comment.