Skip to content

Commit

Permalink
remove extra line for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Dec 13, 2024
1 parent 540dadb commit c1cb960
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/neuroconv/utils/json_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ def get_json_schema_from_method_signature(method: Callable, exclude: Optional[li

# If no annotation is provided (inspect._empty), use Any instead
annotation = Any if parameter.annotation is inspect._empty else parameter.annotation
annotation = parameter.annotation

# Pydantic uses ellipsis for required
pydantic_default = ... if parameter.default is inspect._empty else parameter.default
Expand Down

0 comments on commit c1cb960

Please sign in to comment.