We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug DataFrame.unregister_dataframe_by_name throws a string return type error.
To Reproduce Steps to reproduce the behavior: df = ak.DataFrame({'col1': [1, 2, 3], 'col2': [4, 5, 6]}) df.register("my_table_name") df.attach("my_table_name") df.unregister_dataframe_by_name("my_table_name")
df = ak.DataFrame({'col1': [1, 2, 3], 'col2': [4, 5, 6]})
df.register("my_table_name")
df.attach("my_table_name")
df.unregister_dataframe_by_name("my_table_name")
Error message: TypeError: type of the return value must be NoneType; got str instead
ak.get_config() Output {'arkoudaVersion': 'v2023.11.15+40.gef09a8e23', 'chplVersion': '1.32.0', 'ZMQVersion': '4.3.5', 'HDF5Version': '1.12.2', 'serverHostname': 'pop-os', 'ServerPort': 5555, 'numLocales': 1, 'numPUs': 8, 'maxTaskPar': 8, 'physicalMemory': 67260350464, 'distributionType': 'domain(1,int(64),one)', 'LocaleConfigs': [{'id': 0, 'name': 'pop-os', 'numPUs': 8, 'maxTaskPar': 8, 'physicalMemory': 67260350464}], 'authenticate': False, 'logLevel': 'INFO', 'logChannel': 'CONSOLE', 'regexMaxCaptures': 20, 'byteorder': 'little', 'autoShutdown': False, 'serverInfoNoSplash': False, 'ARROW_VERSION': '14.0.1'}
ak.get_config()
The text was updated successfully, but these errors were encountered:
Closes Bears-R-Us#2934 DataFrame.unregister_dataframe_by_name string …
4040153
…return type error
65fdb87
Closes #2934 DataFrame.unregister_dataframe_by_name string return typ…
99245b2
…e error (#3011) Co-authored-by: Amanda Potts <[email protected]>
ajpotts
Successfully merging a pull request may close this issue.
Describe the bug
DataFrame.unregister_dataframe_by_name throws a string return type error.
To Reproduce
Steps to reproduce the behavior:
df = ak.DataFrame({'col1': [1, 2, 3], 'col2': [4, 5, 6]})
df.register("my_table_name")
df.attach("my_table_name")
df.unregister_dataframe_by_name("my_table_name")
Error message:
TypeError: type of the return value must be NoneType; got str instead
ak.get_config()
Output{'arkoudaVersion': 'v2023.11.15+40.gef09a8e23',
'chplVersion': '1.32.0',
'ZMQVersion': '4.3.5',
'HDF5Version': '1.12.2',
'serverHostname': 'pop-os',
'ServerPort': 5555,
'numLocales': 1,
'numPUs': 8,
'maxTaskPar': 8,
'physicalMemory': 67260350464,
'distributionType': 'domain(1,int(64),one)',
'LocaleConfigs': [{'id': 0,
'name': 'pop-os',
'numPUs': 8,
'maxTaskPar': 8,
'physicalMemory': 67260350464}],
'authenticate': False,
'logLevel': 'INFO',
'logChannel': 'CONSOLE',
'regexMaxCaptures': 20,
'byteorder': 'little',
'autoShutdown': False,
'serverInfoNoSplash': False,
'ARROW_VERSION': '14.0.1'}
The text was updated successfully, but these errors were encountered: