Skip to content

Commit

Permalink
🐛 Fix renderer import.
Browse files Browse the repository at this point in the history
  • Loading branch information
T4rk1n committed Oct 20, 2019
1 parent 482590f commit b419004
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dazzler/_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@
package = _Package(
_package_name,
requirements=_vendors_requirements + _ass_to_req(
_dist_path, _assets['commons'],
dev_data=_dev['commons'],
_dist_path, _assets.get('commons', {}),
dev_data=_dev.get('commons', {}),
dev_path=_dev_path,
package_name=_package_name
) + _ass_to_req(
_dist_path, _assets[_name],
dev_data=_dev[_name],
_dist_path, _assets.get(_name, {}),
dev_data=_dev.get(_name, {}),
dev_path=_dev_path,
package_name=_package_name,
)
Expand Down

0 comments on commit b419004

Please sign in to comment.