diff options
Diffstat (limited to 'snekbox/process.py')
-rw-r--r-- | snekbox/process.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/snekbox/process.py b/snekbox/process.py index d6d25c0..6740909 100644 --- a/snekbox/process.py +++ b/snekbox/process.py @@ -29,4 +29,4 @@ class EvalResult(CompletedProcess[_T]): ) -> None: """Create an evaluation result.""" super().__init__(args, returncode, stdout, stderr) - self.attachments: list[FileAttachment] = attachments or [] + self.files: list[FileAttachment] = attachments or [] |