Skip to content

Commit 5a8a0e1

Browse files
committed
Python lint fixes
Signed-off-by: Darby Johnston <[email protected]>
1 parent 22d4ca1 commit 5a8a0e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/test_otiod.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def setUp(self):
5151
)
5252
track.append(cl1)
5353
self.tl = otio.schema.Timeline("test_round_trip", tracks=[track])
54-
54+
5555
def test_round_trip(self):
5656

5757
with tempfile.NamedTemporaryFile(suffix=".otiod") as bogusfile:
@@ -95,7 +95,7 @@ def test_round_trip_all_missing_references(self):
9595
)
9696

9797
def test_round_trip_absolute_paths(self):
98-
98+
9999
with tempfile.NamedTemporaryFile(suffix=".otiod") as bogusfile:
100100
tmp_path = bogusfile.name
101101
otio.adapters.write_to_file(self.tl, tmp_path)

tests/test_otioz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def test_round_trip_with_extraction_no_media(self):
134134
)
135135

136136
tempdir = tempfile.mkdtemp()
137-
result = otio.adapters.read_from_file(
137+
otio.adapters.read_from_file(
138138
tmp_path,
139139
extract_to_directory=os.path.join(tempdir, "extracted"),
140140
)

0 commit comments

Comments
 (0)