mirror of
				https://github.com/Eledio/superfaktura-client.git
				synced 2025-10-31 16:11:20 +01:00 
			
		
		
		
	data_types: fix module by pylint hints
This commit is contained in:
		| @@ -60,8 +60,10 @@ class Date: | ||||
|         """ | ||||
|         try: | ||||
|             return datetime.strptime(date_str, "%Y-%m-%d") | ||||
|         except ValueError: | ||||
|             raise ValueError(f"Date must be in format YYYY-MM-DD, got: {date_str}") | ||||
|         except ValueError as exc: | ||||
|             raise ValueError( | ||||
|                 f"Date must be in format YYYY-MM-DD, got: {date_str}" | ||||
|             ) from exc | ||||
|  | ||||
|     def __str__(self) -> str: | ||||
|         """ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user