thoward27 / grade

Unused variable found PYL-W0612
Anti-pattern
Major
4 years ago4 years old
196        results = Run(["cat", "README.md"])()
197        results = AssertStdoutRegex(r"python")(results)
198        self.assertIsInstance(results, CompletedProcess)
199        with self.assertRaises(AssertionError) as e:200            AssertStdoutRegex(r"idontthinkthisshouldbehere")(results)
201
202    def test_regex_stderr(self):