Skip to content

Commit

Permalink
chore(deps-dev): bump black from 23.12.1 to 24.8.0 (#89)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Manuel Holtgrewe <[email protected]>
  • Loading branch information
dependabot[bot] and holtgrewe authored Aug 29, 2024
1 parent bb00c13 commit 51c58e1
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 30 deletions.
54 changes: 27 additions & 27 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions dotty/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,11 @@ def _from_dict(assembly: str, dct: dict[str, typing.Any]) -> "Transcript":
id=dct["id"],
hgnc_id=f"HGNC:{dct['hgnc']}",
hgnc_symbol=dct["gene_name"],
alignments=[TanscriptAlignment._from_dict(assembly, dct["genome_builds"][assembly])]
if assembly in dct["genome_builds"]
else [],
alignments=(
[TanscriptAlignment._from_dict(assembly, dct["genome_builds"][assembly])]
if assembly in dct["genome_builds"]
else []
),
)


Expand Down

0 comments on commit 51c58e1

Please sign in to comment.