mirror of
				https://gitlab.alpinelinux.org/alpine/aports.git
				synced 2025-11-04 02:11:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			598 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			598 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
--- ./limits/util.py.orig
 | 
						|
+++ ./limits/util.py
 | 
						|
@@ -8,7 +8,7 @@
 | 
						|
 from types import ModuleType
 | 
						|
 from typing import TYPE_CHECKING, cast
 | 
						|
 
 | 
						|
-import importlib_resources
 | 
						|
+from importlib import resources as importlib_resources
 | 
						|
 from packaging.version import Version
 | 
						|
 
 | 
						|
 from limits.typing import Dict, List, NamedTuple, Optional, Tuple, Type, Union
 | 
						|
--- ./limits/typing.py.orig
 | 
						|
+++ ./limits/typing.py
 | 
						|
@@ -11,7 +11,7 @@
 | 
						|
     Union,
 | 
						|
 )
 | 
						|
 
 | 
						|
-from typing_extensions import ClassVar, Counter, ParamSpec, Protocol
 | 
						|
+from typing import ClassVar, Counter, ParamSpec, Protocol
 | 
						|
 
 | 
						|
 Serializable = Union[int, str, float]
 | 
						|
 
 |