Skip to content

Commit 91af0d7

Browse files
committed
fix quotes in quotes typo
Signed-off-by: David Wallace <david.wallace@tu-darmstadt.de>
1 parent 61d9d01 commit 91af0d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rdmo_client/client/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def _build_url(self, resource_url, kwargs, pk=None):
99
if 'list_route' in kwargs:
1010
url += kwargs.pop('list_route').rstrip('/') + '/'
1111
elif 'nested_route' in kwargs:
12-
url += f'{kwargs.pop('parent_pk')}/'
12+
url += f'{kwargs.pop("parent_pk")}/'
1313
url += kwargs.pop('nested_route').rstrip('/') + '/'
1414

1515
if pk:

0 commit comments

Comments
 (0)