From 734e90b8cc028b1b26706ed9e46e48a7b42bb2c7 Mon Sep 17 00:00:00 2001
From: clavedeluna <danalitovsky+git@gmail.com>
Date: Tue, 31 Jan 2023 12:41:45 -0300
Subject: [PATCH] reshape shape to use *

---
 astroid/brain/brain_numpy_ndarray.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/astroid/brain/brain_numpy_ndarray.py b/astroid/brain/brain_numpy_ndarray.py
index 48db84eb22..02f0aad550 100644
--- a/astroid/brain/brain_numpy_ndarray.py
+++ b/astroid/brain/brain_numpy_ndarray.py
@@ -120,7 +120,7 @@ def ptp(self, axis=None, out=None): return np.ndarray([0, 0])
         def put(self, indices, values, mode='raise'): return None
         def ravel(self, order='C'): return np.ndarray([0, 0])
         def repeat(self, repeats, axis=None): return np.ndarray([0, 0])
-        def reshape(self, shape, order='C'): return np.ndarray([0, 0])
+        def reshape(self, *shape, order='C'): return np.ndarray([0, 0])
         def resize(self, new_shape, refcheck=True): return None
         def round(self, decimals=0, out=None): return np.ndarray([0, 0])
         def searchsorted(self, v, side='left', sorter=None): return np.ndarray([0, 0])