@@ -385,7 +385,7 @@ def _format_property(prop: Dict[str, Any]) -> Optional[str]:
385385 else :
386386 return (
387387 "Available options: "
388- + f' { [_clean_string_values (el ) for el in prop [" values" ]]} '
388+ + f" { [_clean_string_values (el ) for el in prop [' values' ]]} "
389389 )
390390 elif prop ["type" ] in [
391391 "INTEGER" ,
@@ -395,14 +395,14 @@ def _format_property(prop: Dict[str, Any]) -> Optional[str]:
395395 "LOCAL_DATE_TIME" ,
396396 ]:
397397 if prop .get ("min" ) and prop .get ("max" ):
398- return f' Min: { prop [" min" ]} , Max: { prop [" max" ] } '
398+ return f" Min: { prop [' min' ]} , Max: { prop [' max' ] } "
399399 else :
400400 return f'Example: "{ prop ["values" ][0 ]} "' if prop .get ("values" ) else ""
401401 elif prop ["type" ] == "LIST" :
402402 if not prop .get ("min_size" ) or prop ["min_size" ] > LIST_LIMIT :
403403 return None
404404 else :
405- return f' Min Size: { prop [" min_size" ]} , Max Size: { prop [" max_size" ] } '
405+ return f" Min Size: { prop [' min_size' ]} , Max Size: { prop [' max_size' ] } "
406406 return ""
407407
408408
@@ -551,7 +551,7 @@ def _build_str_clauses(
551551 sanitize = sanitize ,
552552 )[0 ]["value" ]
553553 return_clauses .append (
554- (f"values: { distinct_values } ," f" distinct_count: { len (distinct_values )} " )
554+ (f"values: { distinct_values } , distinct_count: { len (distinct_values )} " )
555555 )
556556 else :
557557 with_clauses .append (
@@ -595,7 +595,7 @@ def _build_list_clauses(prop_name: str) -> Tuple[str, str]:
595595 )
596596
597597 return_clause = (
598- f"min_size: `{ prop_name } _size_min`, " f" max_size: `{ prop_name } _size_max`"
598+ f"min_size: `{ prop_name } _size_min`, max_size: `{ prop_name } _size_max`"
599599 )
600600 return with_clause , return_clause
601601
@@ -630,7 +630,7 @@ def _build_num_date_clauses(
630630 return_clauses = []
631631 if not prop_index and not exhaustive :
632632 with_clauses .append (
633- f"collect(distinct toString(n.`{ prop_name } `)) " f" AS `{ prop_name } _values`"
633+ f"collect(distinct toString(n.`{ prop_name } `)) AS `{ prop_name } _values`"
634634 )
635635 return_clauses .append (f"values: `{ prop_name } _values`" )
636636 else :
0 commit comments