Skip to content

Commit

Permalink
fix: Resolved build errors caused by searchbar (nightly)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlin7 committed Apr 22, 2024
1 parent c73562e commit 83437bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion biscuit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.72.0"
__version__ = "2.72.1"
__version_info__ = tuple([int(num) for num in __version__.split(".")])

# For tests to run successfully
Expand Down
3 changes: 1 addition & 2 deletions biscuit/core/layout/menubar/searchbar.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import tkinter as tk

from core.utils import Frame, IconLabelButton

from biscuit import __version__
from biscuit.core.utils import Frame, IconLabelButton


class Searchbar(Frame):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "biscuit"
version = "2.72.0"
version = "2.72.1"
description = "The uncompromising code editor"
authors = ["Billy <billydevbusiness@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit 83437bd

Please sign in to comment.