Skip to content

Commit 231f8d3

Browse files
committed
Minor version bump
1 parent c38fc72 commit 231f8d3

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

bioframe/sandbox/clients.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,7 @@ def info(self, accession, width=850, height=450):
9393

9494
url = urljoin(self.BASE_URL, pp.join("experiments", accession))
9595
return HTML(
96-
'<iframe width="{}px" height="{}px" src={}></iframe>'.format(
97-
width, height, url
98-
)
96+
f'<iframe width="{width}px" height="{height}px" src={url}></iframe>'
9997
)
10098

10199
def fetch(self, accession):
@@ -149,9 +147,7 @@ def info(self, accession, width=850, height=450):
149147

150148
url = urljoin(self.BASE_URL, pp.join("experiments", accession))
151149
return HTML(
152-
'<iframe width="{}px" height="{}px" src={}></iframe>'.format(
153-
width, height, url
154-
)
150+
f'<iframe width="{width}px" height="{height}px" src={url}></iframe>'
155151
)
156152

157153
def fetch(self, accession):

0 commit comments

Comments
 (0)