diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2023-07-30 19:38:26 +0200 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2023-07-30 19:47:40 +0200 |
commit | 6202a7c8f312997ebabb5782f07a5ac6c0cd8971 (patch) | |
tree | 45b540a2d78213361be34f89bde63d15e8bd34f0 /wee_slack.py | |
parent | 7a27eff747db5275bd94517772294321540edbd9 (diff) | |
download | wee-slack-6202a7c8f312997ebabb5782f07a5ac6c0cd8971.tar.gz |
Fix flake8 errors after new flake8 release
For some reason these errors were not reported by flake8 before version
6.1.0.
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/wee_slack.py b/wee_slack.py index 9b6193b..f65849c 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -862,13 +862,15 @@ class EventRouter(object): if "channel" in j: channel_id = ( j["channel"]["id"] - if type(j["channel"]) == dict + if isinstance(j["channel"], dict) else j["channel"] ) channel = team.channels.get(channel_id, channel) if "user" in j: user_id = ( - j["user"]["id"] if type(j["user"]) == dict else j["user"] + j["user"]["id"] + if isinstance(j["user"], dict) + else j["user"] ) metadata["user"] = team.users.get(user_id) @@ -1933,7 +1935,7 @@ class SlackChannelCommon(object): extra_tags = None if message.subtype == "thread_broadcast": extra_tags = [message.subtype] - elif type(message) == SlackThreadMessage and not thread_channel: + elif isinstance(message, SlackThreadMessage) and not thread_channel: if config.thread_messages_in_channel: extra_tags = [message.subtype] else: @@ -2110,13 +2112,13 @@ class SlackChannelCommon(object): m.change_text(text) if ( - type(m) == SlackMessage + not isinstance(m, SlackThreadMessage) or m.subtype == "thread_broadcast" or config.thread_messages_in_channel ): new_text = self.render(m, force=True) modify_buffer_line(self.channel_buffer, ts, new_text) - if type(m) == SlackThreadMessage or m.thread_channel is not None: + if isinstance(m, SlackThreadMessage) or m.thread_channel is not None: thread_channel = ( m.parent_message.thread_channel if isinstance(m, SlackThreadMessage) @@ -2814,7 +2816,7 @@ class SlackChannelVisibleMessages(MappingReversible): message = self.get(ts) if ( - type(message) == SlackThreadMessage + isinstance(message, SlackThreadMessage) and message.subtype != "thread_broadcast" and not config.thread_messages_in_channel ): @@ -4916,7 +4918,7 @@ def unwrap_attachments(message, text_before): if footer: ts = attachment.get("ts") if ts: - ts_int = ts if type(ts) == int else SlackTS(ts).major + ts_int = ts if isinstance(ts, int) else SlackTS(ts).major time_string = "" if date.today() - date.fromtimestamp(ts_int) <= timedelta(days=1): time_string = " at {time}" |