diff options
| author | 2019-03-10 13:14:15 +0000 | |
|---|---|---|
| committer | 2019-03-10 13:14:25 +0000 | |
| commit | 5d7f017c9cacc122ef569a4c58ca2f2496c35e90 (patch) | |
| tree | 297659e0c5c471d17f080c425b0417b90cf4f055 /src/utils | |
| parent | preprocess.send.* event don't have IRCChannel objects on them (diff) | |
| signature | ||
Enum values shouldn't be all upper case
Diffstat (limited to 'src/utils')
| -rw-r--r-- | src/utils/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/__init__.py b/src/utils/__init__.py index 44ba4587..3b3ab9f4 100644 --- a/src/utils/__init__.py +++ b/src/utils/__init__.py @@ -2,8 +2,8 @@ import datetime, decimal, enum, io, ipaddress, re, threading, typing from src.utils import cli, consts, irc, http, parse, security class Direction(enum.Enum): - SEND = 0 - RECV = 1 + Send = 0 + Recv = 1 ISO8601_PARSE = "%Y-%m-%dT%H:%M:%S%z" |
