From d21c604beeca973a827fb1e8e6d08344af7e337a Mon Sep 17 00:00:00 2001 From: thatmattlove Date: Mon, 4 Oct 2021 01:38:53 -0700 Subject: [PATCH] Remove legacy set_app_path call --- hyperglass/__init__.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/hyperglass/__init__.py b/hyperglass/__init__.py index d19fd10..3a26443 100644 --- a/hyperglass/__init__.py +++ b/hyperglass/__init__.py @@ -37,15 +37,11 @@ POSSIBILITY OF SUCH DAMAGE. """ # Third Party -import uvloop +import uvloop # type: ignore # Project -from hyperglass.util import set_app_path from hyperglass.constants import METADATA -# Find hyperglass application directory. -set_app_path() - # Use Uvloop for performance. uvloop.install()