We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 460176f commit ee23290Copy full SHA for ee23290
slack_sdk/audit_logs/v1/logs.py
@@ -551,9 +551,7 @@ def __init__(
551
if previous_profile is None or isinstance(previous_profile, Profile)
552
else Profile(**previous_profile)
553
)
554
- self.new_profile = (
555
- previous_profile if new_profile is None or isinstance(new_profile, Profile) else Profile(**new_profile)
556
- )
+ self.new_profile = new_profile if new_profile is None or isinstance(new_profile, Profile) else Profile(**new_profile)
557
558
559
class Channel:
0 commit comments