Skip to content

Commit b8f3694

Browse files
Fix line continuation formatting in evidently integration
Co-authored-by: Hamza Tahir <htahir1@users.noreply.github.com>
1 parent 4ce1f3b commit b8f3694

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/zenml/integrations/evidently/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ def get_requirements(
7474
"""
7575
from zenml.integrations.pandas import PandasIntegration
7676

77-
return cls.REQUIREMENTS + \
78-
PandasIntegration.get_requirements(target_os=target_os, python_version=python_version)
77+
return cls.REQUIREMENTS + PandasIntegration.get_requirements(
78+
target_os=target_os, python_version=python_version
79+
)
7980

8081
@classmethod
8182
def flavors(cls) -> List[Type[Flavor]]:

0 commit comments

Comments
 (0)