Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion libs/labelbox/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ dependencies = [
"strenum>=0.4.15",
"tqdm>=4.66.2",
"geojson>=3.1.0",
"mypy==1.10.1",
"lbox-clients==1.1.2",
]
readme = "README.md"
Expand Down
10 changes: 5 additions & 5 deletions libs/labelbox/src/labelbox/schema/timeunit.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class TimeUnit(Enum):
WEEK (int): 604800 seconds (7 days)
"""

SECOND: int = 1
MINUTE: int = 60
HOUR: int = 60 * 60
DAY: int = 24 * 60 * 60
WEEK: int = 7 * 24 * 60 * 60
SECOND = 1
MINUTE = 60
HOUR = 60 * 60
DAY = 24 * 60 * 60
WEEK = 7 * 24 * 60 * 60
3 changes: 0 additions & 3 deletions requirements-dev.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
# features: []
# all-features: true
# with-sources: false
# generate-hashes: false
# universal: false

-e file:libs/labelbox
-e file:libs/lbox-clients
Expand Down Expand Up @@ -125,7 +123,6 @@ matplotlib-inline==0.1.7
mistune==3.0.2
# via nbconvert
mypy==1.10.1
# via labelbox
mypy-extensions==1.0.0
# via black
# via mypy
Expand Down
9 changes: 0 additions & 9 deletions requirements.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
# features: []
# all-features: true
# with-sources: false
# generate-hashes: false
# universal: false

-e file:libs/labelbox
-e file:libs/lbox-clients
Expand Down Expand Up @@ -52,10 +50,6 @@ jinja2==3.1.4
# via sphinx
markupsafe==2.1.5
# via jinja2
mypy==1.10.1
# via labelbox
mypy-extensions==1.0.0
# via mypy
numpy==2.0.2
# via labelbox
# via opencv-python-headless
Expand Down Expand Up @@ -123,15 +117,12 @@ sphinxcontrib-serializinghtml==1.1.5
# via sphinx
strenum==0.4.15
# via labelbox
tomli==2.2.1
# via mypy
tqdm==4.66.4
# via labelbox
typeguard==4.3.0
# via labelbox
typing-extensions==4.12.2
# via labelbox
# via mypy
# via pydantic
# via pydantic-core
# via typeguard
Expand Down
Loading