From 3e12fd0656bb6dacd2d2cd2c7c8ed9723079eae3 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Primo=C5=BE=20Godec?=
Date: Wed, 12 Feb 2020 16:19:48 +0100
Subject: [PATCH] Adding NetworkError to __init__ (#814)
---
httpx/__init__.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/httpx/__init__.py b/httpx/__init__.py
index 55f8526c..2c4cb727 100644
--- a/httpx/__init__.py
+++ b/httpx/__init__.py
@@ -12,6 +12,7 @@ from ._exceptions import (
DecodingError,
HTTPError,
InvalidURL,
+ NetworkError,
NotRedirectResponse,
PoolTimeout,
ProtocolError,
@@ -60,6 +61,7 @@ __all__ = [
"DecodingError",
"HTTPError",
"InvalidURL",
+ "NetworkError",
"NotRedirectResponse",
"PoolTimeout",
"ProtocolError",
--
2.47.3