Missing type
This commit is contained in:
		@@ -1,3 +1,6 @@
 | 
			
		||||
from typing import Any
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
class TexturePack:
 | 
			
		||||
    _packs = dict()
 | 
			
		||||
 | 
			
		||||
@@ -16,7 +19,7 @@ class TexturePack:
 | 
			
		||||
        self.__dict__.update(**kwargs)
 | 
			
		||||
        TexturePack._packs[name] = self
 | 
			
		||||
 | 
			
		||||
    def __getitem__(self, item):
 | 
			
		||||
    def __getitem__(self, item) -> Any:
 | 
			
		||||
        return self.__dict__[item]
 | 
			
		||||
 | 
			
		||||
    @classmethod
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user