From 7a59cf4956abd3bda021d6f6f4c95fef4e9a60fd Mon Sep 17 00:00:00 2001 From: Markus Zolliker Date: Mon, 14 Apr 2025 17:20:12 +0200 Subject: [PATCH] frappy-play: fix import order --- bin/frappy-play | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/frappy-play b/bin/frappy-play index da42dd4..d05e147 100755 --- a/bin/frappy-play +++ b/bin/frappy-play @@ -23,12 +23,12 @@ import sys from pathlib import Path -from frappy.lib import generalConfig -from frappy.logging import logger # Add import path for inplace usage sys.path.insert(0, str(Path(__file__).absolute().parents[1])) +from frappy.lib import generalConfig +from frappy.logging import logger from frappy.client.interactive import Console from frappy.playground import play, USAGE