Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-04-26 18:54:23 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-04-26 18:54:23 +0300
commit42aa293679ef962105183742e3706ee0ce5702f3 (patch)
tree64f35a5c9444a6771cb8b78f8eb8661b1465b7d2 /sphinx/deprecation.py
parent2c7d64b94cd9cb8a85a2707773bf66f7bfb76d61 (diff)
parent2619f85461d53afb4948121d2f4539b8530c2af3 (diff)
Merge branch '3.x'
Diffstat (limited to 'sphinx/deprecation.py')
-rw-r--r--sphinx/deprecation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py
index 3a6e6aa0c..0b980a193 100644
--- a/sphinx/deprecation.py
+++ b/sphinx/deprecation.py
@@ -76,6 +76,6 @@ class DeprecatedDict(dict):
warnings.warn(self.message, self.warning, stacklevel=2)
return super().get(key, default)
- def update(self, other: Dict = None) -> None: # type: ignore
+ def update(self, other: Dict) -> None: # type: ignore
warnings.warn(self.message, self.warning, stacklevel=2)
super().update(other)