File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 28
28
sphinx-build docs docs/_build/html
29
29
30
30
livedocs :
31
- sphinx-autobuild docs docs/_build/html --watch i3ipc -i ' *swp' -i ' *~'
31
+ sphinx-autobuild docs docs/_build/html --watch i3ipc --ignore ' *swp' --ignore ' *~'
32
32
33
33
all : format lint docker-test
Original file line number Diff line number Diff line change @@ -295,6 +295,11 @@ def socket_path(self) -> str:
295
295
"""
296
296
return self ._socket_path
297
297
298
+ @property
299
+ def auto_reconect (self ) -> bool :
300
+ """**Deprecated:** Use :attr:`~.Connection.auto_reconnect`"""
301
+ return self ._auto_reconnect
302
+
298
303
@property
299
304
def auto_reconnect (self ) -> bool :
300
305
"""Whether this ``Connection`` will attempt to reconnect when the
Original file line number Diff line number Diff line change 9
9
sphinx
10
10
sphinxcontrib-asyncio
11
11
sphinxcontrib-fulltoc
12
+ sphinx-autobuild
You can’t perform that action at this time.
0 commit comments