Skip to content

Commit

Permalink
Shorter automatic uids (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt authored Nov 12, 2024
1 parent 43db278 commit 9ddf181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/higlass/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@


def uid() -> str:
return str(uuid.uuid4())
return str(uuid.uuid4()).split("-")[0]


T = TypeVar("T")
Expand Down

0 comments on commit 9ddf181

Please sign in to comment.