From 530104d72eadd4a2700a5f8ba6d80dd7fed66d4e Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Wed, 17 Jun 2020 23:41:31 -0700 Subject: [PATCH] Support old mypy version 0.701 --- pinch.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pinch.py b/pinch.py index 37d37a7..b5e3b81 100644 --- a/pinch.py +++ b/pinch.py @@ -124,7 +124,7 @@ def copy_to_nix_store(v: Verification, filename: str) -> str: process = subprocess.run( ['nix-store', '--add', filename], stdout=subprocess.PIPE) v.result(process.returncode == 0) - return process.stdout.decode().strip() + return process.stdout.decode().strip() # type: ignore # (for old mypy) class AliasSearchPath(NamedTuple): @@ -238,7 +238,7 @@ def fetch_channel( v: Verification, channel: ChannelSearchPath) -> Tuple[str, str]: v.status('Fetching channel') request = urllib.request.urlopen(channel.channel_url, timeout=10) - channel_html = request.read() + channel_html = request.read().decode() forwarded_url = request.geturl() v.result(request.status == 200) # type: ignore # (for old mypy) v.check('Got forwarded', channel.channel_url != forwarded_url) @@ -651,7 +651,7 @@ def read_config_section( pin_fields, remaining_fields = filter_dict(all_fields, set(P._fields)) # Error suppression works around https://github.com/python/mypy/issues/9007 pin_present = pin_fields != {} or P._fields == () - pin = P(**pin_fields) if pin_present else None # type:ignore[call-arg] + pin = P(**pin_fields) if pin_present else None # type: ignore return SP(**remaining_fields), pin -- 2.44.1