Skip to content

Commit

Permalink
Merge pull request #115 from izapolsk/rowspan_colspan_support
Browse files Browse the repository at this point in the history
[1LP][RFR] rowspan/colspan support in Table widget
  • Loading branch information
izapolsk committed Oct 10, 2018
2 parents 4ec0e85 + 94bbed3 commit a08fafb
Show file tree
Hide file tree
Showing 14 changed files with 1,936 additions and 1,405 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Expand Up @@ -44,6 +44,7 @@ nosetests.xml
coverage.xml
*,cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
Expand Down Expand Up @@ -87,3 +88,6 @@ ENV/

# Rope project settings
.ropeproject

# pycharm
.idea/
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -15,6 +15,7 @@
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'anytree',
'cached_property',
'jsmin',
'selenium-smart-locator',
Expand Down
Empty file added src/__init__.py
Empty file.
11 changes: 11 additions & 0 deletions src/widgetastic/widget/__init__.py
@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

"""This module contains the base classes that are used to implement the more specific behaviour."""
from .base import * # noqa: F403 F401
from .checkbox import Checkbox # noqa: F401
from .image import Image # noqa: F401
from .input import BaseInput, ColourInput, FileInput, TextInput # noqa: F401
from .select import Select # noqa: F401
from .table import Table, TableColumn, TableRow # noqa: F401
from .text import Text # noqa: F401

0 comments on commit a08fafb

Please sign in to comment.