Skip to content

Commit a4b3a6e

Browse files
committed
remove default parameters
1 parent 90360d9 commit a4b3a6e

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

dlp/dlp_inspect_file.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,8 @@ def inspect_file():
3030
{'name': 'EMAIL_ADDRESS'},
3131
{'name': 'CREDIT_CARD_NUMBER'},
3232
],
33-
# The minimum likelihood required before returning a match
34-
'min_likelihood': 'LIKELIHOOD_UNSPECIFIED',
3533
# Whether to include the matching string
3634
'include_quote': True,
37-
'limits': {
38-
# The maximum number of findings to report per request
39-
# (0 = server maximum)
40-
'max_findings_per_request': 0,
41-
},
4235
}
4336

4437
# Construct the item, containing the file's byte data.

dlp/dlp_inspect_string.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,8 @@ def inspect_string():
3030
{'name': 'EMAIL_ADDRESS'},
3131
{'name': 'CREDIT_CARD_NUMBER'},
3232
],
33-
# The minimum likelihood required before returning a match
34-
'min_likelihood': 'LIKELIHOOD_UNSPECIFIED',
3533
# Whether to include the matching string
3634
'include_quote': True,
37-
'limits': {
38-
# The maximum number of findings to report per request
39-
# (0 = server maximum)
40-
'max_findings_per_request': 0,
41-
},
4235
}
4336

4437
# Construct the `item`.

0 commit comments

Comments
 (0)