Skip to content

Commit a085b5a

Browse files
committed
black
1 parent 6679fb5 commit a085b5a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dash/development/_jl_components_generation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,9 @@ def generate_toml_file(project_shortname, pkg_data):
409409
package_name = jl_package_name(project_shortname)
410410
u = uuid.UUID(jl_dash_uuid)
411411

412-
package_uuid = uuid.UUID(hex=u.hex[:-12] + hashlib.md5(package_name.encode('utf-8')).hexdigest()[-12:])
412+
package_uuid = uuid.UUID(
413+
hex=u.hex[:-12] + hashlib.md5(package_name.encode("utf-8")).hexdigest()[-12:]
414+
)
413415

414416
authors_string = (
415417
'authors = ["{}"]\n'.format(package_author) if package_author else ""

0 commit comments

Comments
 (0)