Skip to content

Commit e66a1e5

Browse files
committed
Python lint
Signed-off-by: Darby Johnston <[email protected]>
1 parent 763546f commit e66a1e5

File tree

1 file changed

+1
-1
lines changed
  • src/py-opentimelineio/opentimelineio/adapters

1 file changed

+1
-1
lines changed

src/py-opentimelineio/opentimelineio/adapters/otioz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def read_from_file(
2727
extract_to_directory=None,
2828
):
2929
options = _otio.bundle.OtiozReadOptions()
30-
if extract_to_directory != None:
30+
if extract_to_directory is not None:
3131
options.extract_path = extract_to_directory
3232
return _otio.bundle.from_otioz(filepath, options)
3333

0 commit comments

Comments
 (0)