diff options
| author | 2020-01-25 13:58:13 +0000 | |
|---|---|---|
| committer | 2020-01-25 14:01:11 +0000 | |
| commit | 341b3141048a72b59593d17713bf492d5e115ac2 (patch) | |
| tree | dea044f17f41c3d1714242238625057b8fea39bd /src/utils/__init__.py | |
| parent | update echo.py to use command spec language (diff) | |
| signature | ||
change command specs to be compiled at runtime by a decorator
Diffstat (limited to 'src/utils/__init__.py')
| -rw-r--r-- | src/utils/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/__init__.py b/src/utils/__init__.py index aad6f7a8..303c70c5 100644 --- a/src/utils/__init__.py +++ b/src/utils/__init__.py @@ -2,7 +2,7 @@ import contextlib, enum, ipaddress, multiprocessing, queue, signal, threading import typing from . import cli, consts, datetime, decorators, irc, http, parse, security -from .decorators import export, hook, kwarg +from .decorators import export, hook, kwarg, spec from .settings import (BoolSetting, FunctionSetting, IntRangeSetting, IntSetting, OptionsSetting, sensitive_format, SensitiveSetting, Setting) from .errors import (EventError, EventNotEnoughArgsError, EventResultsError, |
