Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Merge branch 'development' into data_preparer
Browse files Browse the repository at this point in the history
  • Loading branch information
cchoquette committed Jul 23, 2019
2 parents ef97754 + 2304070 commit a3e81d4
Show file tree
Hide file tree
Showing 55 changed files with 1,519 additions and 892 deletions.
6 changes: 4 additions & 2 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[flake8]
exclude = .git,__pycache__,doc/*,build,dist
exclude = .git,__pycache__,doc/*,build,dist,.tox
ignore =
W503, # Line break occurred after a binary operator (opposite of W504)
D107 # Missing docstring in __init__
D301 # Use r""" if any backslashes in a docstring
per-file-ignores =
foreshadow/transformers/externals.py:F401
foreshadow/transformers/concrete/__init__.py:F401 F403
foreshadow/transformers/concrete/externals.py:F401
foreshadow/transformers/concrete/internals/__init__.py:F401
foreshadow/tests/*:D100 D101 D102 D103 D104 D105 D106 D107 D200 D201 D202 D203 D204 D205 D206 D207 D208 D209 D210 D211 D212 D213 D214 D215 D300 D301 D302 D400 D401 D401 D402 D403 D404 D405 D406 D407 D408 D409 D410 D411 D412 D413 D414 I101 I102 I103 I201 I202 I203 I301 I302 I401 I402 I501 S001 S002
examples/*:D100 D101 D102 D103 D104 D105 D106 D107 D200 D201 D202 D203 D204 D205 D206 D207 D208 D209 D210 D211 D212 D213 D214 D215 D300 D301 D302 D400 D401 D401 D402 D403 D404 D405 D406 D407 D408 D409 D410 D411 D412 D413 D414 I101 I102 I103 I201 I202 I203 I301 I302 I401 I402 I501 S001 S002
# Ignore doclinter for tests and examples
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
repos:
- repo: https://github.com/asottile/seed-isort-config
rev: v1.9.0
rev: v1.9.1
hooks:
- id: seed-isort-config
- repo: https://github.com/pre-commit/mirrors-isort
rev: v4.3.20
rev: v4.3.21
hooks:
- id: isort
additional_dependencies: ['toml']
- repo: https://github.com/ambv/black
rev: stable
rev: 19.3b0
hooks:
- id: black
language_version: python3.6
Expand Down
12 changes: 11 additions & 1 deletion foreshadow/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
"""Core components to foreshadow."""

from foreshadow.core.column_sharer import ColumnSharer
from foreshadow.core.serializers import (
BaseTransformerSerializer,
ConcreteSerializerMixin,
PipelineSerializerMixin,
)


__all__ = ["ColumnSharer"]
__all__ = [
"ColumnSharer",
"BaseTransformerSerializer",
"ConcreteSerializerMixin",
"PipelineSerializerMixin",
]
Loading

0 comments on commit a3e81d4

Please sign in to comment.