mirror of
https://github.com/JockeTF/fimfarchive.git
synced 2024-11-22 05:17:59 +01:00
Ignore method assignment type error
This commit is contained in:
parent
da53762804
commit
684c75ef3e
1 changed files with 2 additions and 2 deletions
|
@ -38,8 +38,8 @@ def fetcher():
|
||||||
"""
|
"""
|
||||||
fetcher = Fetcher()
|
fetcher = Fetcher()
|
||||||
|
|
||||||
fetcher.fetch_meta = MagicMock(method='fetch_meta')
|
fetcher.fetch_meta = MagicMock(method='fetch_meta') # type: ignore
|
||||||
fetcher.fetch_data = MagicMock(method='fetch_data')
|
fetcher.fetch_data = MagicMock(method='fetch_data') # type: ignore
|
||||||
|
|
||||||
return fetcher
|
return fetcher
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue