|  | @@ -11,6 +11,9 @@ T = TypeVar("T", bound="Model")
 | 
	
		
			
				|  |  |  class Model:
 | 
	
		
			
				|  |  |      id: int
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    class DoesNotExist(Exception):
 | 
	
		
			
				|  |  | +        pass
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      @classmethod
 | 
	
		
			
				|  |  |      def create(cls: Type[T], **kwargs) -> T:
 | 
	
		
			
				|  |  |          pass
 | 
	
	
		
			
				|  | @@ -30,6 +33,9 @@ class Model:
 | 
	
		
			
				|  |  |      def save(self):
 | 
	
		
			
				|  |  |          pass
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    def delete(self) -> Any:
 | 
	
		
			
				|  |  | +        pass
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  # These all do things that MyPy chokes on, so we're going to treat
 | 
	
		
			
				|  |  |  # them like methods instead of naming classes
 |