blob: 1dd0636df0023f218ddccbbac7347c4cf6a55460 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from abc import ABCMeta
from discord.ext.commands import CogMeta
class CogABCMeta(CogMeta, ABCMeta):
"""Metaclass for ABCs meant to be implemented as Cogs."""
pass
def pad_base64(data: str) -> str:
"""Return base64 `data` with padding characters to ensure its length is a multiple of 4."""
return data + "=" * (-len(data) % 4)
|