This commit is contained in:
Ali Abid 2022-04-19 01:05:47 -07:00
parent 0312c4043c
commit 7bf3283954
3 changed files with 8 additions and 6 deletions

View File

@ -20,7 +20,7 @@ if TYPE_CHECKING: # Only import for type checking (is False at runtime).
class Block:
def __init__(self, without_rendering=False, css=None):
self.css = css
self.css = css if css is not None else {}
if without_rendering:
return
self.render()
@ -104,9 +104,8 @@ class BlockContext(Block):
css: Css rules to apply to block.
"""
self.children = []
self.css = css
self.visible = visible
super().__init__()
super().__init__(css=css)
def __enter__(self):
self.parent = Context.block
@ -117,7 +116,10 @@ class BlockContext(Block):
Context.block = self.parent
def get_template_context(self):
return {"css": self.css, "default_value": self.visible}
return {
"css": self.css if self.css is not None else {},
"default_value": self.visible,
}
def postprocess(self, y):
return y

View File

@ -47,11 +47,10 @@ class Component(Block):
)
self.label = label
self.requires_permissions = requires_permissions
self.css = css if css is not None else {}
self.interactive = interactive
self.set_interpret_parameters()
super().__init__(without_rendering=without_rendering)
super().__init__(without_rendering=without_rendering, css=css)
def __str__(self):
return self.__repr__()

View File

@ -52,6 +52,7 @@ class TestBlocks(unittest.TestCase):
textbox = gr.components.Textbox()
demo.load(fake_func, [], [textbox])
print(demo.get_config_file())
self.assertEqual(XRAY_CONFIG, demo.get_config_file())