Skip to content

Commit

Permalink
FIX: allow imported definitions in AllTracker for sklearn wrapper cla…
Browse files Browse the repository at this point in the history
…sses (#154)
  • Loading branch information
j-ittner authored Mar 17, 2021
1 parent 5491e1a commit a53840e
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/sklearndf/classification/_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down
2 changes: 1 addition & 1 deletion src/sklearndf/classification/_classification_v0_22.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down
2 changes: 1 addition & 1 deletion src/sklearndf/classification/extra/_extra.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down
2 changes: 1 addition & 1 deletion src/sklearndf/pipeline/_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down
2 changes: 1 addition & 1 deletion src/sklearndf/regression/_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down
2 changes: 1 addition & 1 deletion src/sklearndf/regression/_regression_v0_22.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down
2 changes: 1 addition & 1 deletion src/sklearndf/regression/_regression_v0_23.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down
2 changes: 1 addition & 1 deletion src/sklearndf/regression/extra/_extra.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down
2 changes: 1 addition & 1 deletion src/sklearndf/transformation/_transformation.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down
2 changes: 1 addition & 1 deletion src/sklearndf/transformation/_transformation_v0_22.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down
2 changes: 1 addition & 1 deletion src/sklearndf/transformation/extra/_extra.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# Ensure all symbols introduced below are included in __all__
#

__tracker = AllTracker(globals())
__tracker = AllTracker(globals(), allow_imported_definitions=True)


#
Expand Down

0 comments on commit a53840e

Please # to comment.