aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/internal_eval/_helpers.py
diff options
context:
space:
mode:
authorGravatar Xithrius <[email protected]>2021-09-01 18:44:24 -0700
committerGravatar Xithrius <[email protected]>2021-09-01 18:44:24 -0700
commitaecc1e6f6f1df012add3ce394496b01e776bbfdf (patch)
tree174252cf5ee11ce043877c79507189a799d83a18 /bot/exts/internal_eval/_helpers.py
parentUnion item with None to Optional with item. (diff)
Removed None return annotation for any __init__
Diffstat (limited to 'bot/exts/internal_eval/_helpers.py')
-rw-r--r--bot/exts/internal_eval/_helpers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/internal_eval/_helpers.py b/bot/exts/internal_eval/_helpers.py
index 6fb07f61..5b2f8f5d 100644
--- a/bot/exts/internal_eval/_helpers.py
+++ b/bot/exts/internal_eval/_helpers.py
@@ -80,7 +80,7 @@ class EvalContext:
clear the context, use the `.internal clear` command.
"""
- def __init__(self, context_vars: Namespace, local_vars: Namespace) -> None:
+ def __init__(self, context_vars: Namespace, local_vars: Namespace):
self._locals = dict(local_vars)
self.context_vars = dict(context_vars)
@@ -182,7 +182,7 @@ class EvalContext:
class WrapEvalCodeTree(ast.NodeTransformer):
"""Wraps the AST of eval code with the wrapper function."""
- def __init__(self, eval_code_tree: ast.AST, *args, **kwargs) -> None:
+ def __init__(self, eval_code_tree: ast.AST, *args, **kwargs):
super().__init__(*args, **kwargs)
self.eval_code_tree = eval_code_tree
@@ -207,7 +207,7 @@ class WrapEvalCodeTree(ast.NodeTransformer):
class CaptureLastExpression(ast.NodeTransformer):
"""Captures the return value from a loose expression."""
- def __init__(self, tree: ast.AST, *args, **kwargs) -> None:
+ def __init__(self, tree: ast.AST, *args, **kwargs):
super().__init__(*args, **kwargs)
self.tree = tree
self.last_node = list(ast.iter_child_nodes(tree))[-1]