Commit d71f7a63 authored by Bruno Morgado's avatar Bruno Morgado Committed by Bruno S. Morgado
Browse files

Fixed superfluous-parens

parent e4459a01
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ def test_something():
def test_with_error():
    with pytest.raises(ValueError):
        # Do something that raises a ValueError
        raise(ValueError)
        raise ValueError


# Fixture example