Commit 7ad9a49 1 parent 0362472 commit 7ad9a49 Copy full SHA for 7ad9a49
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -457,13 +457,13 @@ class NotClassError(Exception):
457
457
if not (tree_class := list ((value for value in tree ))):
458
458
raise NotClassError ('This is not a class' )
459
459
with open (metrics , 'a' , encoding = 'utf-8' ) as metric :
460
- metric .write (f'NoOA { attrs (tree_class )} '
460
+ metric .write (f'NoOA { attrs (tree_class )} '
461
461
f'Number of Non-Static (Object) Attributes\n ' )
462
- metric .write (f'NoSA { sattrs (tree_class )} '
462
+ metric .write (f'NoSA { sattrs (tree_class )} '
463
463
f'Number of Static Attributes\n ' )
464
- metric .write (f'NoCC { ctors (tree_class )} '
464
+ metric .write (f'NoCC { ctors (tree_class )} '
465
465
f'Number of Class Constructors\n ' )
466
- metric .write (f'NoOM { methods (tree_class )} '
466
+ metric .write (f'NoOM { methods (tree_class )} '
467
467
f'Number of Non-Static (Object) Methods\n ' )
468
468
metric .write (f'NoCM { smethods (tree_class )} '
469
469
f'Number of Static (Class) Methods\n ' )
You can’t perform that action at this time.
0 commit comments