Skip to content

Commit 2206450

Browse files
committed
[fdiff.diff] fmt
1 parent 280d6bb commit 2206450

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

lib/fdiff/diff.py

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,14 @@ def u_diff(
192192
with tempfile.TemporaryDirectory() as tmpdirpath:
193193
# define the file paths with either local file requests
194194
# or HTTP GET requests of remote files based on the command line request
195-
left_ttxpath, right_ttxpath, pre_pathname, prepath, post_pathname, postpath = _get_fonts_and_save_xml(
195+
(
196+
left_ttxpath,
197+
right_ttxpath,
198+
pre_pathname,
199+
prepath,
200+
post_pathname,
201+
postpath,
202+
) = _get_fonts_and_save_xml(
196203
filepath_a,
197204
filepath_b,
198205
tmpdirpath,
@@ -249,7 +256,14 @@ def external_diff(
249256
with tempfile.TemporaryDirectory() as tmpdirpath:
250257
# define the file paths with either local file requests
251258
# or HTTP GET requests of remote files based on the command line request
252-
left_ttxpath, right_ttxpath, pre_pathname, prepath, post_pathname, postpath = _get_fonts_and_save_xml(
259+
(
260+
left_ttxpath,
261+
right_ttxpath,
262+
pre_pathname,
263+
prepath,
264+
post_pathname,
265+
postpath,
266+
) = _get_fonts_and_save_xml(
253267
filepath_a,
254268
filepath_b,
255269
tmpdirpath,

0 commit comments

Comments
 (0)