Skip to content

Commit 70050ff

Browse files
committed
whitespace
1 parent 5f89d81 commit 70050ff

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/textual/widget.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2219,28 +2219,24 @@ def _resolve_extrema(
22192219
min_width = styles.min_width.resolve(
22202220
container - margin.totals, viewport, width_fraction
22212221
)
2222-
22232222
if is_border_box:
22242223
min_width -= gutter.width
22252224
if styles.max_width is not None:
22262225
max_width = styles.max_width.resolve(
22272226
container - margin.totals, viewport, width_fraction
22282227
)
2229-
22302228
if is_border_box:
22312229
max_width -= gutter.width
22322230
if styles.min_height is not None:
22332231
min_height = styles.min_height.resolve(
22342232
container - margin.totals, viewport, height_fraction
22352233
)
2236-
22372234
if is_border_box:
22382235
min_height -= gutter.height
22392236
if styles.max_height is not None:
22402237
max_height = styles.max_height.resolve(
22412238
container - margin.totals, viewport, height_fraction
22422239
)
2243-
22442240
if is_border_box:
22452241
max_height -= gutter.height
22462242

0 commit comments

Comments
 (0)