about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2022-02-05 16:12:20 +0100
committertoonn <toonn@toonn.io>2022-02-05 16:12:20 +0100
commit8372a7602d93eb7fc3d18c8ac071ea9cd6349501 (patch)
tree77a612653a140ba9c1be2338e8f72b70ad5cd7f1
parentabcdb9b6d76cf56be55c037d90b1c299468d006a (diff)
downloadranger-8372a7602d93eb7fc3d18c8ac071ea9cd6349501.tar.gz
convert_papermode_to_metadata: Drop disappeared Pylint options
-rwxr-xr-xdoc/tools/convert_papermode_to_metadata.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/tools/convert_papermode_to_metadata.py b/doc/tools/convert_papermode_to_metadata.py
index 58371193..0a1b21ce 100755
--- a/doc/tools/convert_papermode_to_metadata.py
+++ b/doc/tools/convert_papermode_to_metadata.py
@@ -39,7 +39,6 @@ def replace(source, target):
     result = {}
 
     # Read the input file and convert it to a dictionary
-    # pylint: disable=unspecified-encoding
     with open(".paperinfo", "r") as infile:
         reader = csv.reader(infile, skipinitialspace=True)
         for lineno, row in enumerate(reader):
@@ -62,7 +61,6 @@ def replace(source, target):
     if result:
         # There's no way to specify encoding in 2.x even though in this case we
         # could choose to write in UTF-8.
-        # pylint: disable=unspecified-encoding
         with open(".metadata.json", "w") as outfile:
             json.dump(result, outfile, indent=2)
     else: