From 524c7b65c9250874081969e538fea3ad79918c93 Mon Sep 17 00:00:00 2001 From: Brandon N Benton Date: Sat, 29 Jun 2024 05:08:57 -0700 Subject: [PATCH] Update __init__.py --- mlclouds/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mlclouds/__init__.py b/mlclouds/__init__.py index bde6f83..855be13 100644 --- a/mlclouds/__init__.py +++ b/mlclouds/__init__.py @@ -1,8 +1,7 @@ -#, -*- coding: utf-8 -*- """MLClouds library.""" import os -from .version import __version__ +from .version import __version__ # noqa: F401 MLCLOUDSDIR = os.path.dirname(os.path.realpath(__file__)) TESTDATADIR = os.path.join(os.path.dirname(MLCLOUDSDIR), 'tests', 'data')