We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bfaf2f commit 0708987Copy full SHA for 0708987
roboflow/core/project.py
@@ -787,7 +787,7 @@ def image(self, image_id: str) -> Dict:
787
788
>>> image_details = project.image("image-id")
789
"""
790
- url = f"{API_URL}/{self.__workspace}/{self.__project_name}/images/{image_id}" f"?api_key={self.__api_key}"
+ url = f"{API_URL}/{self.__workspace}/{self.__project_name}/images/{image_id}?api_key={self.__api_key}"
791
792
data = requests.get(url).json()
793
0 commit comments