ref: Rename component modules to lower case (ruff N999) (#4220)

* Rename component modules to lower case (ruff N999)

* git rename workaround (1/2)

* git rename workaround (2/2)

* Rollback changes on schema __init__

* Fix tests
This commit is contained in:
Christophe Bornet 2024-10-22 18:46:32 +02:00 committed by GitHub
commit 6e39dedaae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
235 changed files with 284 additions and 248 deletions

View file

@ -113,8 +113,8 @@ async def test_build_with_multiple_urls(api_request):
assert len(results) == len(urls)
@patch("langflow.components.data.Directory.parallel_load_data")
@patch("langflow.components.data.Directory.retrieve_file_paths")
@patch("langflow.components.data.directory.parallel_load_data")
@patch("langflow.components.data.directory.retrieve_file_paths")
@patch("langflow.components.data.DirectoryComponent.resolve_path")
def test_directory_component_build_with_multithreading(
mock_resolve_path, mock_retrieve_file_paths, mock_parallel_load_data