Skip to content

Commit 9d0fd37

Browse files
committed
Autoformat and bump version
1 parent ae6732e commit 9d0fd37

File tree

5 files changed

+620
-459
lines changed

5 files changed

+620
-459
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ patterns.
120120
## Usage:
121121

122122
```
123-
usage: arxiv_latex_cleaner@v1.0.1 [-h] [--resize_images] [--im_size IM_SIZE]
123+
usage: arxiv_latex_cleaner@v1.0.2 [-h] [--resize_images] [--im_size IM_SIZE]
124124
[--compress_pdf]
125125
[--pdf_im_resolution PDF_IM_RESOLUTION]
126126
[--images_allowlist IMAGES_ALLOWLIST]

arxiv_latex_cleaner/__main__.py

+42-25
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,25 @@
2222
import json
2323
import logging
2424

25+
import yaml
26+
2527
from ._version import __version__
2628
from .arxiv_latex_cleaner import merge_args_into_config
2729
from .arxiv_latex_cleaner import run_arxiv_cleaner
2830

29-
import yaml
30-
3131
PARSER = argparse.ArgumentParser(
3232
prog="arxiv_latex_cleaner@{0}".format(__version__),
33-
description=("Clean the LaTeX code of your paper to submit to arXiv. "
34-
"Check the README for more information on the use."),
33+
description=(
34+
"Clean the LaTeX code of your paper to submit to arXiv. "
35+
"Check the README for more information on the use."
36+
),
3537
)
3638

3739
PARSER.add_argument(
38-
"input_folder", type=str, help="Input folder or zip archive containing the LaTeX code.")
40+
"input_folder",
41+
type=str,
42+
help="Input folder or zip archive containing the LaTeX code.",
43+
)
3944

4045
PARSER.add_argument(
4146
"--resize_images",
@@ -47,8 +52,10 @@
4752
"--im_size",
4853
default=500,
4954
type=int,
50-
help=("Size of the output images (in pixels, longest side). Fine tune this "
51-
"to get as close to 10MB as possible."),
55+
help=(
56+
"Size of the output images (in pixels, longest side). Fine tune this "
57+
"to get as close to 10MB as possible."
58+
),
5259
)
5360

5461
PARSER.add_argument(
@@ -68,10 +75,12 @@
6875
"--images_allowlist",
6976
default={},
7077
type=json.loads,
71-
help=("Images (and PDFs) that won't be resized to the default resolution,"
72-
"but the one provided here. Value is pixel for images, and dpi for"
73-
"PDFs, as in --im_size and --pdf_im_resolution, respectively. Format "
74-
"is a dictionary as: '{\"path/to/im.jpg\": 1000}'"),
78+
help=(
79+
"Images (and PDFs) that won't be resized to the default resolution,"
80+
"but the one provided here. Value is pixel for images, and dpi for"
81+
"PDFs, as in --im_size and --pdf_im_resolution, respectively. Format "
82+
"is a dictionary as: '{\"path/to/im.jpg\": 1000}'"
83+
),
7584
)
7685

7786
PARSER.add_argument(
@@ -91,7 +100,8 @@
91100
"and \\todo2{}, run the tool with `--commands_to_delete todo1 todo2`."
92101
"Please note that the positional argument `input_folder` cannot come "
93102
"immediately after `commands_to_delete`, as the parser does not have "
94-
"any way to know if it's another command to delete."),
103+
"any way to know if it's another command to delete."
104+
),
95105
)
96106

97107
PARSER.add_argument(
@@ -100,12 +110,13 @@
100110
default=[],
101111
required=False,
102112
help=(
103-
"LaTeX commands that will be deleted but the text wrapped in the "
104-
"commands will be retained. Useful for commands that change text "
105-
"formats and colors, which you may want to remove but keep the "
106-
"text within. Usages are exactly the same as commands_to_delete. "
107-
"Note that if the commands listed here duplicate that after "
108-
"commands_to_delete, the default action will be retaining the wrapped text."),
113+
"LaTeX commands that will be deleted but the text wrapped in the"
114+
" commands will be retained. Useful for commands that change text"
115+
" formats and colors, which you may want to remove but keep the text"
116+
" within. Usages are exactly the same as commands_to_delete. Note that"
117+
" if the commands listed here duplicate that after commands_to_delete,"
118+
" the default action will be retaining the wrapped text."
119+
),
109120
)
110121

111122
PARSER.add_argument(
@@ -120,14 +131,18 @@
120131
"`--environments_to_delete note`. Please note that the positional "
121132
"argument `input_folder` cannot come immediately after "
122133
"`environments_to_delete`, as the parser does not have any way to "
123-
"know if it's another environment to delete."),
134+
"know if it's another environment to delete."
135+
),
124136
)
125137

126138
PARSER.add_argument(
127139
"--use_external_tikz",
128140
type=str,
129-
help=("Folder (relative to input folder) containing externalized tikz "
130-
"figures in PDF format."))
141+
help=(
142+
"Folder (relative to input folder) containing externalized tikz "
143+
"figures in PDF format."
144+
),
145+
)
131146

132147
PARSER.add_argument(
133148
"--svg_inkscape",
@@ -143,15 +158,17 @@
143158
"input folder), but a different path (relative to the input folder) "
144159
"can be provided in case a different `inkscapepath` was set when "
145160
"loading the `svg` package."
146-
)
161+
),
147162
)
148163

149164
PARSER.add_argument(
150165
"--config",
151166
type=str,
152-
help=("Read settings from `.yaml` config file. If command line arguments "
153-
"are provided additionally, the config file parameters are updated "
154-
"with the command line parameters."),
167+
help=(
168+
"Read settings from `.yaml` config file. If command line arguments "
169+
"are provided additionally, the config file parameters are updated "
170+
"with the command line parameters."
171+
),
155172
required=False,
156173
)
157174

arxiv_latex_cleaner/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
__version__ = "v1.0.1"
16+
__version__ = "v1.0.2"

0 commit comments

Comments
 (0)