You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 28, 2025. It is now read-only.
I was setting up python-jss by running it the first name and noticed that the distribution point names are showing as ""
I debugged in VS Code and discovered that
dpt.get("name")is returningNonewhen it should be returning the DP's name.Different value checks I did and the results:
I think
dptis an object not a dictionary, so it should probably be usinggetattr(object, attr, default_value)instead ofobject.get()?Or is there something else going on?