8000 fix lint and also remove pass (oops) · slz250/python-docs-samples@67702a7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 67702a7

Browse files
committed
fix lint and also remove pass (oops)
1 parent e9556de commit 67702a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

monitoring/api/v3/cloud-client/snippets_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ def __():
6464

6565
out, _ = capsys.readouterr()
6666
assert test_custom_metric_descriptor in out
67-
except:
68-
pass
67+
except Exception as e:
68+
print(e)
6969

7070

7171
def test_delete_metric_descriptor(test_custom_metric_descriptor, capsys):

0 commit comments

Comments
 (0)
0