Skip to content

.iteritems is depricated in Python3 #35

@TheBrainChain

Description

@TheBrainChain

for k, v in lookup.iteritems():

in make_roi_mesh() utilizes dict.iteritems() which is deprecated in Python3.

for k, v in lookup.items():

works and is backwards compatible.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions