You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			352 B
		
	
	
	
		
			Python
		
	
			
		
		
	
	
			15 lines
		
	
	
		
			352 B
		
	
	
	
		
			Python
		
	
"""
 | 
						|
Render to qt from agg
 | 
						|
"""
 | 
						|
from .. import backends
 | 
						|
 | 
						|
backends._QT_FORCE_QT5_BINDING = True
 | 
						|
from .backend_qtagg import (    # noqa: F401, E402 # pylint: disable=W0611
 | 
						|
    _BackendQTAgg, FigureCanvasQTAgg, FigureManagerQT, NavigationToolbar2QT,
 | 
						|
    FigureCanvasAgg, FigureCanvasQT)
 | 
						|
 | 
						|
 | 
						|
@_BackendQTAgg.export
 | 
						|
class _BackendQT5Agg(_BackendQTAgg):
 | 
						|
    pass
 |