Skip to content

Commit

Permalink
fix flake8 findings
Browse files Browse the repository at this point in the history
  • Loading branch information
frankrolf committed Dec 4, 2024
1 parent f4d437b commit 39d23c3
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions tests/ufotools_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import pytest
import plistlib
from shutil import copytree
from pathlib import Path
Expand All @@ -11,13 +10,8 @@
)
from test_utils import (
get_input_path,
get_expected_path,
generate_ttx_dump,
)

# from runner import main as runner
# from differ import main as differ


TEST_UFO_FILENAME = 'ufotools_basic.ufo'

Expand Down Expand Up @@ -80,7 +74,7 @@ def test_cleanupContentsList_no_plist():
glyph_dir.mkdir()
# make some glif files but no contents.plist
for glyph_name in 'xyz':
glyph_path = glyph_dir / '{glyph_name}.glif'
glyph_path = glyph_dir / f'{glyph_name}.glif'
glyph_path.touch()

# although there is no contents.plist, this should not fail (#1606)
Expand Down

0 comments on commit 39d23c3

Please sign in to comment.