|  | @@ -58,7 +58,7 @@ class validator:
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          return True
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    def check_length_less(self, value, length: int, inclusive=True):
 | 
	
		
			
				|  |  | +    def check_length_less(self, value, length: int, inclusive=False):
 | 
	
		
			
				|  |  |          """
 | 
	
		
			
				|  |  |              Валидация аргумента по максимальной длине
 | 
	
		
			
				|  |  |          Args:
 | 
	
	
		
			
				|  | @@ -78,7 +78,7 @@ class validator:
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          return True
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    def check_length_greater(self, value, length: int, inclusive=True):
 | 
	
		
			
				|  |  | +    def check_length_greater(self, value, length: int, inclusive=False):
 | 
	
		
			
				|  |  |          """
 | 
	
		
			
				|  |  |              Валидация аргумента по минимальной длине
 | 
	
		
			
				|  |  |          Args:
 |