Skip to content

Commit 0cc7d91

Browse files
authored
fix typo in config.py
I think the config for the `OBJECT_DETECTION_URL` is reading the wrong env variable
1 parent 02b717f commit 0cc7d91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roboflow/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def get_conditional_configuration_variable(key, default):
6161
"SEMANTIC_SEGMENTATION_URL", "https://segment.roboflow.com"
6262
)
6363
OBJECT_DETECTION_URL = get_conditional_configuration_variable(
64-
"SEMANTIC_SEGMENTATION_URL", "https://detect.roboflow.com"
64+
"OBJECT_DETECTION_URL", "https://detect.roboflow.com"
6565
)
6666

6767
CLIP_FEATURIZE_URL = get_conditional_configuration_variable(

0 commit comments

Comments
 (0)