Skip to content

Commit

Permalink
Fix linter notices
Browse files Browse the repository at this point in the history
  • Loading branch information
deiwin committed Sep 18, 2020
1 parent a16a7c3 commit 80352c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Lib.hs
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ ensureTeamState apiToken record = do
ensureGroupState apiToken caretakerGroupHandle caretakerGroupName [channelID] caretakerIDs
where
channelName = "tm-" <> team record
teamGroupHandle = (team record) <> "-team"
teamGroupName = "Team " <> (team record)
caretakerGroupHandle = (team record) <> "-caretaker"
teamGroupHandle = team record <> "-team"
teamGroupName = "Team " <> team record
caretakerGroupHandle = team record <> "-caretaker"
caretakerGroupName = teamGroupName <> " caretaker"
userIDs = concat $ members record

Expand Down

0 comments on commit 80352c9

Please sign in to comment.