Skip to content
This repository was archived by the owner on Dec 24, 2025. It is now read-only.

Commit 6e50f48

Browse files
committed
fixes
1 parent cc3bde9 commit 6e50f48

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/flet_map/types.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,8 @@ class FadeInTileDisplay(TileDisplay):
755755

756756
def __post_init__(self):
757757
assert 0.0 <= self.start_opacity <= 1.0, (
758-
f"start_opacity must be between 0.0 and 1.0 inclusive, got {self.start_opacity}"
758+
f"start_opacity must be between 0.0 and 1.0 inclusive, "
759+
f"got {self.start_opacity}"
759760
)
760761
assert 0.0 <= self.reload_start_opacity <= 1.0, (
761762
f"reload_start_opacity must be between 0.0 and 1.0 inclusive, "
@@ -803,8 +804,8 @@ class KeyboardConfiguration:
803804
default_factory=lambda: ft.Duration(milliseconds=600)
804805
)
805806
"""
806-
Duration of the curved (reverse `ft.Curve.EASE_IN`) portion of the animation
807-
occuring after a key up event.
807+
Duration of the curved (reverse [`Curve.EASE_IN`][flet.Curve.EASE_IN])
808+
portion of the animation occuring after a key up event.
808809
809810
Set to `None` to use [`animation_curve_duration`][..].
810811
"""
@@ -939,7 +940,7 @@ def disabled(cls) -> "KeyboardConfiguration":
939940
Disable keyboard control of the map.
940941
941942
Info:
942-
`CursorKeyboardRotationConfiguration` may still be active,
943+
[`CursorKeyboardRotationConfiguration`][(p).] may still be active,
943944
and is not disabled if this is disabled.
944945
"""
945946
return KeyboardConfiguration(

0 commit comments

Comments
 (0)