File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 1818 "ReMeFs" ,
1919]
2020
21- __version__ = "0.3.0.0a1 "
21+ __version__ = "0.3.0.0a2 "
2222
2323
2424"""
2525conda create -n fl_test2 python=3.10
2626conda activate fl_test2
2727conda env remove -n fl_test2
28- """
28+ """
Original file line number Diff line number Diff line change @@ -23,10 +23,7 @@ def __init__(
2323 # Validate store_name to prevent SQL injection
2424 # Only allow alphanumeric characters and underscores
2525 if not re .match (r"^[a-zA-Z0-9_]+$" , store_name ):
26- raise ValueError (
27- f"Invalid store_name: '{ store_name } '. "
28- "Only alphanumeric characters and underscores are allowed."
29- )
26+ raise ValueError (f"Invalid '{ store_name } '. Only alphanumeric characters and underscores are allowed." )
3027 self .store_name : str = store_name
3128 self .embedding_model : BaseEmbeddingModel = embedding_model
3229 self .fts_enabled : bool = fts_enabled
You can’t perform that action at this time.
0 commit comments