Skip to content

Commit 507175f

Browse files
feedback
1 parent 5b50578 commit 507175f

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

linode_api4/groups/database.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -167,15 +167,15 @@ def mysql_fork(self, source, restore_time, **kwargs):
167167
:param source: The id of the source database
168168
:type source: int
169169
:param restore_time: The timestamp for the fork
170-
:type source: datetime
170+
:type restore_time: datetime
171171
:param label: The name for this cluster
172172
:type label: str
173173
:param region: The region to deploy this cluster in
174-
:type region: str or Region
174+
:type region: str | Region
175175
:param engine: The engine to deploy this cluster with
176-
:type engine: str or Engine
176+
:type engine: str | Engine
177177
:param ltype: The Linode Type to use for this cluster
178-
:type ltype: str or Type
178+
:type ltype: str | Type
179179
"""
180180

181181
params = {
@@ -291,15 +291,15 @@ def postgresql_fork(self, source, restore_time, **kwargs):
291291
:param source: The id of the source database
292292
:type source: int
293293
:param restore_time: The timestamp for the fork
294-
:type source: datetime
294+
:type restore_time: datetime
295295
:param label: The name for this cluster
296296
:type label: str
297297
:param region: The region to deploy this cluster in
298-
:type region: str or Region
298+
:type region: str | Region
299299
:param engine: The engine to deploy this cluster with
300-
:type engine: str or Engine
300+
:type engine: str | Engine
301301
:param ltype: The Linode Type to use for this cluster
302-
:type ltype: str or Type
302+
:type ltype: str | Type
303303
"""
304304

305305
params = {

linode_api4/linode_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,6 @@ def _api_call(
275275
body = None
276276
if data is not None:
277277
body = json.dumps(data)
278-
print(body)
279278

280279
response = method(
281280
url,

0 commit comments

Comments
 (0)