Skip to content

Commit

Permalink
revert and remove | None
Browse files Browse the repository at this point in the history
  • Loading branch information
Sparkier committed Apr 22, 2024
1 parent e66076e commit c491fc3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ packages = [{ include = "zeno_client" }]
[tool.poetry.dependencies]
pandas = ">=1.4.3"
pyarrow = ">=6.0.0"
python = ">=3.10"
python = ">=3.8"
pydantic = ">=1.0"
requests = ">=2.20.0"
arrow-json = "^0.9.0"
Expand Down
7 changes: 4 additions & 3 deletions zeno_client/client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Functions to upload data to Zeno's backend."""

import io
import json
import re
Expand Down Expand Up @@ -305,10 +306,10 @@ def create_project(
*,
name: str,
view: Union[str, Dict] = "",
description: str | None = None,
description: Optional[str] = None,
metrics: List[ZenoMetric] = [],
samples_per_page: int | None = None,
public: bool | None = None,
samples_per_page: Optional[int] = None,
public: Optional[bool] = None,
) -> ZenoProject:
"""Creates an empty project in Zeno's backend.
Expand Down

0 comments on commit c491fc3

Please sign in to comment.