-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOC: Fix many aliases #602
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #602 +/- ##
=======================================
Coverage 99.57% 99.57%
=======================================
Files 100 100
Lines 17269 17288 +19
Branches 2464 2464
=======================================
+ Hits 17196 17215 +19
Misses 27 27
Partials 46 46 ☔ View full report in Codecov by Sentry. |
linearmodels/iv/_utility.py
Outdated
@@ -7,10 +7,12 @@ | |||
from formulaic.formula import Formula | |||
from formulaic.materializers.types import NAAction as fNAAction | |||
from formulaic.utils.context import capture_context | |||
import numpy |
Check notice
Code scanning / CodeQL
Unused import Note
@@ -524,7 +523,7 @@ | |||
group: Literal["entity", "time", "both"], | |||
*, | |||
return_panel: Literal[False], | |||
) -> Float64Array: ... | |||
) -> linearmodels.typing.data.Float64Array: ... |
Check notice
Code scanning / CodeQL
Statement has no effect Note
@@ -541,15 +540,15 @@ | |||
group: Literal["entity", "time", "both"], | |||
weights: PanelData | None, | |||
return_panel: Literal[False], | |||
) -> Float64Array: ... # noqa: E704 | |||
) -> linearmodels.typing.data.Float64Array: ... # noqa: E704 |
Check notice
Code scanning / CodeQL
Statement has no effect Note
doc/source/conf.py
Outdated
@@ -23,6 +23,15 @@ | |||
|
|||
# More warnings | |||
nitpicky = True | |||
nitpick_ignore = [] | |||
|
|||
for line in open("nitpick-exceptions"): |
Check warning
Code scanning / CodeQL
File is not always closed Warning documentation
No description provided.