Skip to content

Commit

Permalink
Resolve lint and type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
austinmatherne-wk committed Jan 25, 2024
1 parent 438728a commit 1414c88
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion arelle/Cntlr.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ def workingOnlineOrInCache(self, url: str) -> bool:


def logRefsFileLines(refs: list[dict[str, Any]]) -> str:
fileLines: defaultdict[Any, set[str]] = defaultdict(set)
fileLines = defaultdict(set)
for ref in refs:
href = ref.get("href")
if href:
Expand Down
1 change: 0 additions & 1 deletion arelle/plugin/validate/EFM/MessageNumericId.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,4 +177,3 @@ def messageNumericId(modelXbrl, level, messageCode, args):
return messageCode, code + sum(int(n) * 10**(i*2)
for i,n in enumerate(reversed(m.group(1).split(splitChar)), start=1))
return messageCode, unknown

0 comments on commit 1414c88

Please sign in to comment.