Skip to content

Commit 49a399a

Browse files
committed
missing import
1 parent 5a17cfe commit 49a399a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

nbs/00_vector.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@
7070
"from pgvector.asyncpg import register_vector\n",
7171
"from typing import (List, Optional, Union, Dict, Tuple, Any)\n",
7272
"import json\n",
73-
"import numpy as np"
73+
"import numpy as np\n",
74+
"import math"
7475
]
7576
},
7677
{

timescale_vector/client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from typing import (List, Optional, Union, Dict, Tuple, Any)
1212
import json
1313
import numpy as np
14+
import math
1415

1516
# %% ../nbs/00_vector.ipynb 7
1617
SEARCH_RESULT_ID_IDX = 0

0 commit comments

Comments
 (0)