mirror of https://github.com/kivy/kivy.git
Added missing GridLayoutException import in recyclegridlayout.
This commit is contained in:
parent
71bd76b2d1
commit
bbc03d812b
|
@ -15,7 +15,7 @@ The RecycleGridLayout is designed to provide a
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from kivy.uix.recyclelayout import RecycleLayout
|
from kivy.uix.recyclelayout import RecycleLayout
|
||||||
from kivy.uix.gridlayout import GridLayout, nmax, nmin
|
from kivy.uix.gridlayout import GridLayout, GridLayoutException, nmax, nmin
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
|
||||||
__all__ = ('RecycleGridLayout', )
|
__all__ = ('RecycleGridLayout', )
|
||||||
|
|
Loading…
Reference in New Issue