Browse Source

py38 compatibility

Masen Furer 1 year ago
parent
commit
feb74eef7a
2 changed files with 3 additions and 0 deletions
  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."""
 
+from __future__ import annotations
 
 from reflex.components.chakra import ChakraComponent
 from reflex.components.component import Component

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

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