Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
Update __init__.py in base
Browse files Browse the repository at this point in the history
  • Loading branch information
Anders Fredrik Kiær committed Feb 8, 2020
1 parent 5ffa875 commit ab6c61d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion dash_core_components_base/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,5 +135,13 @@
},
])

_css_dist = [
{
'relative_package_path': '{}.css'.format(__name__),
'namespace': 'dash_core_components',
}
]

for _component in __all__:
setattr(locals()[_component], '_js_dist', _js_dist)
setattr(locals()[_component], '_js_dist', _js_dist)
setattr(locals()[_component], '_css_dist', _css_dist)

0 comments on commit ab6c61d

Please sign in to comment.