mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-10-30 22:54:18 +00:00 
			
		
		
		
	utils/types: Rename cls argument
				
					
				
			This commit is contained in:
		| @@ -586,10 +586,10 @@ class _EnumMeta(type): | |||||||
|     def __str__(cls): |     def __str__(cls): | ||||||
|         return str(cls.levels) |         return str(cls.levels) | ||||||
|  |  | ||||||
|     def __getattr__(self, name): |     def __getattr__(cls, name): | ||||||
|         name = name.lower() |         name = name.lower() | ||||||
|         if name in self.__dict__: |         if name in cls.__dict__: | ||||||
|                 return self.__dict__[name] |             return cls.__dict__[name] | ||||||
|  |  | ||||||
|  |  | ||||||
| def enum(args, start=0, step=1): | def enum(args, start=0, step=1): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user