Skip to content

Commit

Permalink
refactoring and linting
Browse files Browse the repository at this point in the history
Signed-off-by: tanishq-ids <[email protected]>
  • Loading branch information
tanishq-ids committed Aug 26, 2024
1 parent 7d10beb commit 92c492e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from typer.testing import CliRunner
import pytest

from src.osc_transformer_based_extractor.kpi_detection.cli_kpi_detection import (
from osc_transformer_based_extractor.kpi_detection.cli_kpi_detection import (
kpi_detection_app,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import pytest

# Import the functions from the module
from src.osc_transformer_based_extractor.kpi_detection.inference_kpi_detection import (
from osc_transformer_based_extractor.kpi_detection.inference_kpi_detection import (
run_full_inference_kpi_detection,
)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typer.testing import CliRunner
from unittest.mock import patch

from src.osc_transformer_based_extractor.relevance_detector.cli_relevance_detector import (
from osc_transformer_based_extractor.relevance_detector.cli_relevance_detector import (
relevance_detector_app,
)

Expand Down
2 changes: 1 addition & 1 deletion tests/osc_transformer_based_extractor/test_main_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import pytest
from typer.testing import CliRunner
from src.osc_transformer_based_extractor.main_cli import (
from osc_transformer_based_extractor.main_cli import (
app,
) # Adjust the import based on your package structure

Expand Down

0 comments on commit 92c492e

Please sign in to comment.