diff --git a/fotogrid.py b/fotogrid.py index b487530..321b4df 100644 --- a/fotogrid.py +++ b/fotogrid.py @@ -1,6 +1,8 @@ -# Provide a simple responsive fotogrid using flex layout. -# Depends on the css/fotogrid.css defined styles. def fotogrid(image_urls): + """ + Provide a simple responsive fotogrid using flex layout. + Depends on the css/fotogrid.css defined styles. + """ result = '
' cols = 4 images = divmod(len(image_urls), cols)