def add_separator(self, side="left"): """Adds a Separator to the Statusbar.""" widget = ttk.Separator(self, orient="vertical") widget.pack(side=side, fill="y", padx=3, pady=1) return widget