From 52cb0fe81e7546895d84bac0e78b66c113a563b9 Mon Sep 17 00:00:00 2001 From: Laurens Valk Date: Thu, 1 Dec 2022 16:49:45 +0100 Subject: [PATCH] ubuiltins: Fix missing types on print args. --- src/ubuiltins/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ubuiltins/__init__.py b/src/ubuiltins/__init__.py index 66c6fed..b7cd4eb 100644 --- a/src/ubuiltins/__init__.py +++ b/src/ubuiltins/__init__.py @@ -985,9 +985,9 @@ def print(*args): objects: Zero or more objects to print. Keyword Arguments: - sep: This is printed between objects, if there is more than one. - end: This is printed after the last object. - file: By default, the result is printed in the terminal window. This + sep (str): This is printed between objects, if there is more than one. + end (str): This is printed after the last object. + file (FileIO): By default, the result is printed in the terminal window. This argument lets you print it to a file instead, if files are supported. """