-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(commons): fix linter warnings
- Loading branch information
1 parent
1414b11
commit bdc65ea
Showing
6 changed files
with
42 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,3 +115,6 @@ def marginal_rate( | |
) | ||
|
||
return marginal_rate | ||
|
||
|
||
__all__ = ["average_rate", "marginal_rate"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
from openfisca_core.types import ( # noqa: F401 | ||
Array as Array, | ||
ArrayAny as ArrayAny, | ||
ArrayBool as ArrayBool, | ||
ArrayFloat as ArrayFloat, | ||
ArrayLike as ArrayLike, | ||
ArrayStr as ArrayStr, | ||
from openfisca_core.types import ( | ||
Array, | ||
ArrayAny, | ||
ArrayBool, | ||
ArrayFloat, | ||
ArrayLike, | ||
ArrayStr, | ||
) | ||
|
||
__all__ = [ | ||
"Array", | ||
"ArrayAny", | ||
"ArrayBool", | ||
"ArrayFloat", | ||
"ArrayLike", | ||
"ArrayStr", | ||
] |