Skip to content

Commit

Permalink
fix: import errors from last pr
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlin7 committed Oct 28, 2023
1 parent 9753cef commit 821de74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion biscuit/core/components/views/sidebar/sidebarview.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, master, *args, **kwargs) -> None:
self.top.pack(fill=tk.X, padx=(15, 10), pady=7)
self.top.grid_columnconfigure(0, weight=1)

tk.Label(self.top, text=self.__class__.__name__.upper(), anchor=W, font=("Segoi UI", 8),
tk.Label(self.top, text=self.__class__.__name__.upper(), anchor=tk.W, font=("Segoi UI", 8),
**self.base.theme.views.sidebar.title).grid(row=0, column=0, sticky=tk.EW)

self.column = 1
Expand Down

0 comments on commit 821de74

Please sign in to comment.