From: Francois Fleuret Date: Wed, 27 Jul 2022 04:57:23 +0000 (+0200) Subject: OCD cosmetics. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mygpt.git;a=commitdiff_plain;h=c92c5abfa01b78a292929d2363bb05798c2af39f OCD cosmetics. --- diff --git a/picoclvr.py b/picoclvr.py index 2d57505..c455072 100755 --- a/picoclvr.py +++ b/picoclvr.py @@ -181,9 +181,9 @@ def descr2properties(descr, height, width): ###################################################################### -def nb_missing_properties(descr, height, width): +def nb_properties(descr, height, width): if type(descr) == list: - return [ nb_missing_properties(d, height, width) for d in descr ] + return [ nb_properties(d, height, width) for d in descr ] d = descr.split('', 1) if len(d) == 0: return 0 @@ -202,7 +202,7 @@ if __name__ == '__main__': descr = generate(nb = 5) #print(descr2properties(descr)) - print(nb_missing_properties(descr)) + print(nb_properties(descr)) with open('picoclvr_example.txt', 'w') as f: for d in descr: