Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
leplatrem committed Dec 3, 2024
1 parent c41aeb4 commit d719734
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@
{
"path": "detect_secrets.filters.allowlist.is_line_allowlisted"
},
{
"path": "detect_secrets.filters.common.is_baseline_file",
"filename": ".secrets.baseline"
},
{
"path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies",
"min_level": 2
Expand Down Expand Up @@ -138,14 +142,14 @@
"filename": "tests/checks/remotesettings/test_attachments_integrity.py",
"hashed_secret": "263e1869fb57deeb75844cf85d55f0d03a6019fc",
"is_verified": false,
"line_number": 31
"line_number": 32
},
{
"type": "Hex High Entropy String",
"filename": "tests/checks/remotesettings/test_attachments_integrity.py",
"hashed_secret": "fdf34abe05071170ce2ec082a18aa762ec454ae3",
"is_verified": false,
"line_number": 39
"line_number": 40
}
],
"tests/checks/remotesettings/test_public_suffix_list.py": [
Expand All @@ -158,5 +162,5 @@
}
]
},
"generated_at": "2024-10-18T09:21:04Z"
"generated_at": "2024-12-03T11:11:17Z"
}
4 changes: 2 additions & 2 deletions checks/remotesettings/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import copy
import re
from typing import Dict, List
from typing import Any, Dict, List

import backoff
import kinto_http
Expand Down Expand Up @@ -54,7 +54,7 @@ async def get_monitor_changes(self, **kwargs) -> List[Dict]:
return resp["changes"]

@retry_timeout
async def get_changeset(self, *args, **kwargs) -> List[Dict]:
async def get_changeset(self, *args, **kwargs) -> Dict[str, Any]:
return await self._client.get_changeset(*args, **kwargs)

@retry_timeout
Expand Down

0 comments on commit d719734

Please sign in to comment.