MinDalle_StableDiff/Python310/Lib/test/badsyntax_future8.py
lnd212 238bf88b72 BIG UPDATE
Updated python to 3.10
Updated diffusers to 0.4.1
2022-10-09 17:27:10 +04:00

11 lines
122 B
Python

"""This is a test"""
from __future__ import *
def f(x):
def g(y):
return x + y
return g
print(f(2)(4))