Quellcode durchsuchen

py38 compatibility

Masen Furer vor 1 Jahr
Ursprung
Commit
feb74eef7a
2 geänderte Dateien mit 3 neuen und 0 gelöschten Zeilen
  1. 1 0
      reflex/components/chakra/navigation/link.py
  2. 2 0
      reflex/components/core/match.py

+ 1 - 0
reflex/components/chakra/navigation/link.py

@@ -1,5 +1,6 @@
 """A link component."""
 """A link component."""
 
 
+from __future__ import annotations
 
 
 from reflex.components.chakra import ChakraComponent
 from reflex.components.chakra import ChakraComponent
 from reflex.components.component import Component
 from reflex.components.component import Component

+ 2 - 0
reflex/components/core/match.py

@@ -1,5 +1,7 @@
 """rx.match."""
 """rx.match."""
 
 
+from __future__ import annotations
+
 import textwrap
 import textwrap
 from typing import Any, Dict, List, Optional, Tuple, Union
 from typing import Any, Dict, List, Optional, Tuple, Union