Skip to content

Commit b59a485

Browse files
authored
Make sure .js.map file included in dict, remove stray print statement
1 parent 8e7210a commit b59a485

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

dash_mp_components/__init__.py

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@
3030

3131
_this_module = _sys.modules[__name__]
3232

33-
print(package_name)
34-
3533
_js_dist = [
3634
{
3735
'relative_package_path':
@@ -42,12 +40,12 @@
4240
'namespace':
4341
package_name
4442
},
45-
#{
46-
# 'relative_package_path': 'dash_mp_components.min.js.map',
47-
# 'external_url': 'https://unpkg.com/{0}@{2}/{1}/{1}.min.js.map'.format(
48-
# package_name, __name__, __version__),
49-
# 'namespace': package_name
50-
# }
43+
{
44+
'relative_package_path': 'dash_mp_components.min.js.map',
45+
'external_url': 'https://unpkg.com/{0}@{2}/{1}/{1}.min.js.map'.format(
46+
package_name, __name__, __version__),
47+
'namespace': package_name
48+
}
5149
]
5250

5351
_css_dist = []

0 commit comments

Comments
 (0)