-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
- Loading branch information
1 parent
ad0bce5
commit f234c90
Showing
17 changed files
with
87 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .startup import startup_api | ||
from .neuroconv import neuroconv_api | ||
from .data import data_api | ||
from .neuroconv import neuroconv_api | ||
from .startup import startup_api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
from .info import CONVERSION_SAVE_FOLDER_PATH, STUB_SAVE_FOLDER_PATH | ||
from .manage_neuroconv import ( | ||
get_all_interface_info, | ||
get_all_converter_info, | ||
locate_data, | ||
autocomplete_format_string, | ||
get_source_schema, | ||
get_metadata_schema, | ||
convert_to_nwb, | ||
validate_metadata, | ||
upload_project_to_dandi, | ||
upload_folder_to_dandi, | ||
upload_multiple_filesystem_objects_to_dandi, | ||
listen_to_neuroconv_events, | ||
generate_dataset, | ||
generate_test_data, | ||
get_all_converter_info, | ||
get_all_interface_info, | ||
get_interface_alignment, | ||
get_metadata_schema, | ||
get_source_schema, | ||
inspect_multiple_filesystem_objects, | ||
inspect_nwb_file, | ||
inspect_nwb_folder, | ||
inspect_multiple_filesystem_objects, | ||
get_interface_alignment, | ||
generate_test_data, | ||
listen_to_neuroconv_events, | ||
locate_data, | ||
upload_folder_to_dandi, | ||
upload_multiple_filesystem_objects_to_dandi, | ||
upload_project_to_dandi, | ||
validate_metadata, | ||
) | ||
|
||
|
||
from .info import STUB_SAVE_FOLDER_PATH, CONVERSION_SAVE_FOLDER_PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
from .sse import announcer, format_sse | ||
from .urls import ( | ||
resource_path, | ||
CONVERSION_SAVE_FOLDER_PATH, | ||
GUIDE_ROOT_FOLDER, | ||
STUB_SAVE_FOLDER_PATH, | ||
CONVERSION_SAVE_FOLDER_PATH, | ||
resource_path, | ||
) | ||
|
||
from .sse import announcer, format_sse |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import queue | ||
import json | ||
import queue | ||
|
||
|
||
def format_sse(data: str, event=None) -> str: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import pytest | ||
import app as flask | ||
import pytest | ||
|
||
|
||
def pytest_addoption(parser): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters