Merge pull request #52164 from mhilbrunner/gd-style-fixup

GDScript test style fix
This commit is contained in:
Max Hilbrunner 2021-08-28 20:16:17 +02:00 committed by GitHub
commit 5d2c4faa89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
func test():
var null_var = null
var true_var:bool = true
var false_var:bool = false
var true_var: bool = true
var false_var: bool = false
print(str(null_var))
print(str(true_var))
print(str(false_var))