diff options
| author | 2019-02-01 22:28:08 -0500 | |
|---|---|---|
| committer | 2019-02-01 22:28:08 -0500 | |
| commit | 1084c8479ad14711236ec5094c77c90c31446604 (patch) | |
| tree | c699a20775c86b8277668a7b30b59ca34e7326a1 | |
| parent | Added rules cog. (diff) | |
Fixed errors after linting
Turns out I broke a few things after linting. Whoops. Fixed.
| -rw-r--r-- | bot/cogs/rules.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bot/cogs/rules.py b/bot/cogs/rules.py index 6759d07a2..208607573 100644 --- a/bot/cogs/rules.py +++ b/bot/cogs/rules.py @@ -38,7 +38,7 @@ class Rules: ), ( "We will not help you with anything that might break " - "a law or the terms of service of any other community, site," + "a law or the terms of service of any other community, site, " "service, or otherwise - No piracy, brute-forcing, captcha " "circumvention, sneaker bots, or anything else of that nature." ), @@ -69,10 +69,10 @@ class Rules: "us directly if you want to discuss a partnership!" ) ] - self.default_desc = "The rules and guidelines that apply to this ", \ - "community can be found on our [rules page],"\ - "(https://pythondiscord.com/about/rules). We "\ - "expect all members of the community to have "\ + self.default_desc = "The rules and guidelines that apply to this " \ + "community can be found on our [rules page]" \ + "(https://pythondiscord.com/about/rules). We " \ + "expect all members of the community to have " \ "read and understood these." @command( |