From ddb57d997a654a8dec654d9f9816711dcd07902b Mon Sep 17 00:00:00 2001 From: ethanlchristensen Date: Fri, 18 Oct 2024 01:01:35 -0500 Subject: [PATCH] version bump --- bruhanimate/__init__.py | 2 +- bruhanimate/bruhrenderer/focus_renderer.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bruhanimate/__init__.py b/bruhanimate/__init__.py index 0c0bba3..72db465 100644 --- a/bruhanimate/__init__.py +++ b/bruhanimate/__init__.py @@ -78,7 +78,7 @@ ) -__version__ = "0.2.71" +__version__ = "0.2.72" __valid_demos__ = [ "static_demo", "offset_demo", diff --git a/bruhanimate/bruhrenderer/focus_renderer.py b/bruhanimate/bruhrenderer/focus_renderer.py index 92365fc..78eaf95 100644 --- a/bruhanimate/bruhrenderer/focus_renderer.py +++ b/bruhanimate/bruhrenderer/focus_renderer.py @@ -42,7 +42,7 @@ def __init__( loop: bool = True ): super(FocusRenderer, self).__init__( - screen, frames, time, effect_type, background, transparent, collision + screen, frames, frame_time, effect_type, background, transparent, collision ) self.background = background if background else " " self.transparent = transparent if transparent else False diff --git a/setup.py b/setup.py index c2bc098..120cc29 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh: long_description = "\n" + fh.read() -VERSION = "0.2.71" +VERSION = "0.2.72" DESCRIPTION = 'ASCII Terminal Animation Package' LONG_DESCRIPTION = 'A package that allows for various animations in the terminal'