hound: classics ;)

This commit is contained in:
Jakub Jezek 2022-01-17 13:55:02 +01:00
parent 7dbb46fcbf
commit d10d6c65be
No known key found for this signature in database
GPG key ID: D8548FBF690B100A
2 changed files with 1 additions and 2 deletions

View file

@ -677,7 +677,6 @@ def get_frame_from_path(path):
return None
@contextlib.contextmanager
def maintained_object_duplication(item):
"""Maintain input item duplication

View file

@ -63,7 +63,7 @@ def export_clip(export_path, clip, preset_path, **kwargs):
def get_preset_path_by_xml_name(xml_preset_name):
def _search_path(root):
output = []
for root, dirs, files in os.walk(root):
for root, _dirs, files in os.walk(root):
for f in files:
if f != xml_preset_name:
continue