summaryrefslogtreecommitdiff
path: root/sphinx/directives/code.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-12-11 06:46:04 -0800
committerJon Dufresne <jon.dufresne@gmail.com>2018-12-11 06:50:20 -0800
commit8bb73c9fd3555deb83f01e1d18fa10c563202f78 (patch)
treeaffde9d2c1580e38138c860cd298b384cfde5b96 /sphinx/directives/code.py
parent689b9ffd047b12b0fe30e2b25bbc3f50f4756785 (diff)
downloadsphinx-git-8bb73c9fd3555deb83f01e1d18fa10c563202f78.tar.gz
Simplify open() call by removing default mode
The open() function opens files in read-only text mode by default. Drop the mode argument to be slightly simpler and more idiomatic. https://docs.python.org/3/library/functions.html#open > The default mode is 'r' (open for reading text, synonym of 'rt').
Diffstat (limited to 'sphinx/directives/code.py')
-rw-r--r--sphinx/directives/code.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py
index b513a37e0..574e06e5e 100644
--- a/sphinx/directives/code.py
+++ b/sphinx/directives/code.py
@@ -216,7 +216,7 @@ class LiteralIncludeReader:
def read_file(self, filename, location=None):
# type: (unicode, Any) -> List[unicode]
try:
- with open(filename, 'r', # type: ignore
+ with open(filename, # type: ignore
encoding=self.encoding, errors='strict') as f:
text = f.read() # type: unicode
if 'tab-width' in self.options: