Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
baskaryan committed Nov 8, 2024
1 parent 6cce45e commit a509417
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion python/docs/create_api_rst.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ def _load_module_members(module_path: str, namespace: str) -> ModuleMembers:
else (
"enum"
if issubclass(type_, Enum)
else "Pydantic" if issubclass(type_, BaseModel) else "Regular"
else "Pydantic"
if issubclass(type_, BaseModel)
else "Regular"
)
)
if hasattr(type_, "__slots__"):
Expand Down
2 changes: 0 additions & 2 deletions python/langsmith/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

from typing import TYPE_CHECKING, Any

import parametrize as parametrize

if TYPE_CHECKING:
from langsmith._expect import expect
from langsmith._testing import test, unit
Expand Down

0 comments on commit a509417

Please sign in to comment.