Refactor NeonResource class constructor

This commit is contained in:
2024-01-18 13:47:27 -05:00
parent 90775af07e
commit caf3d537d0
+1 -6
View File
@@ -15,12 +15,7 @@ NEON_API_BASE_URL = "https://console.neon.tech/api/v2/"
class NeonResource:
def __init__(
self,
client,
obj,
data_model: BaseModel,
):
def __init__(self, client, obj, data_model: BaseModel):
"""A Neon Resource. Used to wrap API responses, and deserialize them.
Args: