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 3d3e0aa commit 17c9bddCopy full SHA for 17c9bdd
google/cloud/aiplatform/base.py
@@ -1,6 +1,6 @@
1
# -*- coding: utf-8 -*-
2
3
-# Copyright 2020 Google LLC
+# Copyright 2022 Google LLC
4
#
5
# Licensed under the Apache License, Version 2.0 (the "License");
6
# you may not use this file except in compliance with the License.
@@ -1064,9 +1064,11 @@ def _list(
1064
or initializer.global_config.common_location_path(
1065
project=project, location=location
1066
),
1067
- "filter": filter,
1068
}
1069
+ if filter:
1070
+ list_request["filter"] = filter
1071
+
1072
if order_by:
1073
list_request["order_by"] = order_by
1074
0 commit comments