This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
provider = function(self) | |
local title = " EXPLORER" | |
local width = vim.api.nvim_win_get_width(self.winid) | |
local pad = width - #title | |
return " " .. title .. string.rep(" ", pad + 2) | |
end, | |
hl = { fg = "normal", bg = "tabline_bg", bold = true }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def create_stats_table(data_frame: pd.DataFrame) -> html.Table: | |
"""Constructor for a Dash Table from a Data Frame | |
Args: | |
data_frame (pd.DataFrame): Source data for Table | |
Returns: | |
html.Table: Dash Table element | |
""" | |
table_rows: list[html.Tr] = [] |