From 992e7829bae181c83b89674c8128c2fb7a0c0890 Mon Sep 17 00:00:00 2001 From: WolfTheDeveloper <158775116+WolfTheDeveloper@users.noreply.github.com> Date: Fri, 10 May 2024 19:39:10 +0000 Subject: [PATCH] :art: Format Python code with psf/black --- llamascript/__init__.py | 2 +- llamascript/embedded.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/llamascript/__init__.py b/llamascript/__init__.py index 0798220..c7666fb 100644 --- a/llamascript/__init__.py +++ b/llamascript/__init__.py @@ -1,2 +1,2 @@ from lang import * -from embedded import * \ No newline at end of file +from embedded import * diff --git a/llamascript/embedded.py b/llamascript/embedded.py index f9f0614..762c26a 100644 --- a/llamascript/embedded.py +++ b/llamascript/embedded.py @@ -1,5 +1,6 @@ from lang import llama + class LlamaScriptRunner: def __init__(self): self.llama = llama() @@ -45,4 +46,4 @@ async def read(self, filename): await self.llama.read(filename) return True except FileNotFoundError: - return False \ No newline at end of file + return False