Ignore method assignment type error

This commit is contained in:
Joakim Soderlund 2018-08-04 22:19:52 +02:00
parent da53762804
commit 684c75ef3e

View file

@ -38,8 +38,8 @@ def fetcher():
"""
fetcher = Fetcher()
fetcher.fetch_meta = MagicMock(method='fetch_meta')
fetcher.fetch_data = MagicMock(method='fetch_data')
fetcher.fetch_meta = MagicMock(method='fetch_meta') # type: ignore
fetcher.fetch_data = MagicMock(method='fetch_data') # type: ignore
return fetcher