Skip to content

Commit

Permalink
Ruff update, don't ruff tests (#992)
Browse files Browse the repository at this point in the history
  • Loading branch information
vblagoje authored Aug 16, 2024
1 parent ac2680c commit d77c4ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integrations/langfuse/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ dependencies = ["black>=23.1.0", "mypy>=1.0.0", "ruff>=0.0.243"]

[tool.hatch.envs.lint.scripts]
typing = "mypy --install-types --non-interactive --explicit-package-bases {args:src/ tests}"
style = ["ruff check {args:.}", "black --check --diff {args:.}"]
fmt = ["black {args:.}", "ruff --fix {args:.}", "style"]
style = ["ruff check {args:. --exclude tests/}", "black --check --diff {args:.}"]
fmt = ["black {args:.}", "ruff --fix {args:. --exclude tests/}", "style"]
all = ["style", "typing"]

[tool.hatch.metadata]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from haystack import component, tracing
from haystack_integrations.tracing.langfuse import LangfuseTracer

from haystack_integrations.tracing.langfuse import LangfuseTracer
from langfuse import Langfuse


Expand Down

0 comments on commit d77c4ea

Please sign in to comment.