We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 392d769 commit adec783Copy full SHA for adec783
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "supervision"
3
-version = "0.26.0rc2"
+version = "0.26.0rc3"
4
description = "A set of easy-to-use utils that will come in handy in any Computer Vision project"
5
authors = ["Piotr Skalski <[email protected]>"]
6
maintainers = [
supervision/detection/core.py
@@ -1203,7 +1203,7 @@ def __getitem__(
1203
if isinstance(index, str):
1204
return self.data.get(index)
1205
if self.is_empty():
1206
- return Detections.empty()
+ return self
1207
if isinstance(index, int):
1208
index = [index]
1209
return Detections(
0 commit comments