Skip to content

Commit

Permalink
Blacken
Browse files Browse the repository at this point in the history
  • Loading branch information
sheagcraig committed Sep 21, 2023
1 parent a65846d commit 6656b78
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion payload/usr/local/sal/checkin_modules/profile_checkin.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ def main():
for count, payload in enumerate(payloads, start=1):
data[f"payload {count}"] = payload

data["payload_types"] = ", ".join(p.get("PayloadType", "None") for p in payloads)
data["payload_types"] = ", ".join(
p.get("PayloadType", "None") for p in payloads
)
data["profile_description"] = profile.get("ProfileDescription", "None")
data["identifier"] = profile["ProfileIdentifier"]
data["organization"] = profile.get("ProfileOrganization" or "None")
Expand Down

0 comments on commit 6656b78

Please sign in to comment.