fix mypy
This commit is contained in:
parent
e5165246e0
commit
b1a816e504
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class PorgAll:
|
||||||
res: List[Org] = []
|
res: List[Org] = []
|
||||||
for p in self.paths:
|
for p in self.paths:
|
||||||
for of in _get_org_files_in(p):
|
for of in _get_org_files_in(p):
|
||||||
org = Org.from_file(of)
|
org = Org.from_file(str(of))
|
||||||
res.extend(query(org))
|
res.extend(query(org))
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue