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
is_mounted
Consider the following example:
from blkinfo import BlkDiskInfo myblkd = BlkDiskInfo() filters = dict(ro=False, tran='usb', is_mounted=False) all_my_disks = myblkd.get_disks(filters)
This raises TypeError: unhashable type: 'dict' (only when including is_mounted).
TypeError: unhashable type: 'dict'
The issue is raised in wrappers.py line 182 since child_name is a dict.
child_name
It looks like node['children'] is a list of dicts.
node['children']
dicts
Additional info;
sda
sda1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider the following example:
This raises
TypeError: unhashable type: 'dict'
(only when includingis_mounted
).The issue is raised in wrappers.py line 182 since
child_name
is a dict.It looks like
node['children']
is a list ofdicts
.Additional info;
sda
sda1
The text was updated successfully, but these errors were encountered: