Skip to content

Commit 9c355cb

Browse files
committed
implemented copilot review
Signed-off-by: Omswastik-11 <omswastikpanda11@gmail.com>
1 parent 915b4cb commit 9c355cb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

openml/_api/resources/flow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ def list(
112112
if offset is not None:
113113
api_call += f"/offset/{offset}"
114114
if tag is not None:
115-
api_call += f"/tag/{tag}"
115+
api_call += f"/tag/{quote(str(tag), safe='')}"
116116
if uploader is not None:
117-
api_call += f"/uploader/{uploader}"
117+
api_call += f"/uploader/{quote(str(uploader), safe='')}"
118118

119119
response = self._http.get(api_call)
120120
xml_string = response.text

0 commit comments

Comments
 (0)