Skip to content

Commit 484e5a7

Browse files
committed
added newlines
1 parent b6ac338 commit 484e5a7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

datumaro/components/wrappers.py

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
from datumaro.components.errors import DatasetNotFoundError
99

10+
1011
def wrap_find_sources_recursive(importer):
1112
@classmethod
1213
def updated_find_sources_recursive(
@@ -30,6 +31,7 @@ def updated_find_sources_recursive(
3031

3132
return updated_find_sources_recursive
3233

34+
3335
def wrap_generate_not_found_error():
3436
@classmethod
3537
def updated_generate_not_found_error(cls, path):
@@ -41,6 +43,7 @@ def updated_generate_not_found_error(cls, path):
4143

4244
return updated_generate_not_found_error
4345

46+
4447
def wrap_importer(importer):
4548
mock.patch.object(
4649
importer, "_find_sources_recursive", new=wrap_find_sources_recursive(importer)

0 commit comments

Comments
 (0)