File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -387,7 +387,7 @@ def wrapper(func):
387
387
# https://docs.python.org/3/library/inspect.html#inspect.signature
388
388
signature_kwargs : Mapping [str , Any ] = {"eval_str" : True }
389
389
else :
390
- signature_kwargs = {}
390
+ signature_kwargs = {} # type: ignore
391
391
392
392
signature = inspect .signature (
393
393
func ,
Original file line number Diff line number Diff line change 69
69
import bigframes .session
70
70
import bigframes .session ._io .bigquery
71
71
import bigframes .session .clients
72
+ import bigframes .version
72
73
73
74
try :
74
75
import resource
@@ -838,6 +839,7 @@ def clean_up_by_session_id(
838
839
Index = bigframes .core .indexes .Index
839
840
MultiIndex = bigframes .core .indexes .MultiIndex
840
841
Series = bigframes .series .Series
842
+ __version__ = bigframes .version .__version__
841
843
842
844
# Other public pandas attributes
843
845
NamedAgg = namedtuple ("NamedAgg" , ["column" , "aggfunc" ])
@@ -911,6 +913,7 @@ def reset_session():
911
913
"Index" ,
912
914
"MultiIndex" ,
913
915
"Series" ,
916
+ "__version__" ,
914
917
# Other public pandas attributes
915
918
"NamedAgg" ,
916
919
"options" ,
You can’t perform that action at this time.
0 commit comments