Browse Source

flake8 fix

main
nibrag 7 years ago
parent
commit
1f8ce4d158
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      aiosocks/__init__.py
  2. +1
    -1
      aiosocks/test_utils.py

+ 1
- 1
aiosocks/__init__.py View File

@@ -79,7 +79,7 @@ async def create_connection(protocol_factory, proxy, proxy_auth, dst, *,

try:
await waiter
except:
except: # noqa
transport.close()
raise



+ 1
- 1
aiosocks/test_utils.py View File

@@ -113,7 +113,7 @@ class FakeSocks4Srv:
data.append(byte[0])
writer.write(byte)
await writer.drain()
except:
except: # noqa
break

def factory():


Loading…
Cancel
Save