Skip to content

Commit bb82b9f

Browse files
committed
Add missing imports
1 parent cb2c6d6 commit bb82b9f

File tree

5 files changed

+10
-0
lines changed

5 files changed

+10
-0
lines changed

src/openlayers/controls.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from .models.controls import (
24
Control,
35
ControlT,

src/openlayers/layers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from .models.layers import (
24
Layer,
35
LayerT,

src/openlayers/map_options.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from .models.map_options import MapOptions
24

35
__all__ = ["MapOptions"]

src/openlayers/sources.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from .models.sources import (
24
OSM,
35
GeoTIFFSource,

src/openlayers/view.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from .models.view import Projection, View
24

35
__all__ = ["Projection", "View"]

0 commit comments

Comments
 (0)