Skip to content

Commit 9934b84

Browse files
committed
docs
1 parent 802c1af commit 9934b84

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.readthedocs.yml

-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ version: 2
99
sphinx:
1010
configuration: docs/conf.py
1111

12-
# Build documentation with MkDocs
13-
#mkdocs:
14-
# configuration: mkdocs.yml
15-
1612
# Optionally build your docs in additional formats such as PDF and ePub
1713
formats: all
1814

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# The theme to use for HTML and HTML Help pages. See the documentation for
4747
# a list of builtin themes.
4848
#
49-
html_theme = 'alabaster'
49+
# html_theme = 'alabaster'
5050

5151
# Add any paths that contain custom static files (such as style sheets) here,
5252
# relative to this directory. They are copied after the builtin static files,

redismpx/multiplexer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def my_on_activation(name: bytes):
5757
5858
# Use `mpx` to create new subscriptions.
5959
channel_sub = mpx.new_channel_subcription(
60-
my_on_message, my_on_disconnect, None)
60+
my_on_message, my_on_disconnect, None)
6161
pattern_sub = mpx.new_pattern_subscription("hello-*",
6262
my_on_message, None, my_on_activation)
6363
promise_sub = mpx.new_promise_subscription("hello-")

0 commit comments

Comments
 (0)