-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from FlorianPfaff/megalinter-v7.3.0
Upped mega linter to v7.3.0
- Loading branch information
Showing
9 changed files
with
33 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
--- | ||
name: Update requirements.txt | ||
|
||
permissions: | ||
|
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ Please refer to the test cases for usage examples. | |
|
||
## Credits | ||
|
||
- Florian Pfaff ([email protected]) | ||
- Florian Pfaff (<[email protected]>) | ||
|
||
pyRecEst borrows its structure from libDirectional and follows its code closely for many classes. libDirectional, a project to which I contributed extensively, is [available on GitHub](https://github.com/libDirectional). | ||
|
||
|
9 changes: 6 additions & 3 deletions
9
pyrecest/distributions/hypertorus/custom_toroidal_distribution.py
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,7 +1,10 @@ | ||
from .custom_hypertoroidal_distribution import CustomHypertoroidalDistribution | ||
from .abstract_toroidal_distribution import AbstractToroidalDistribution | ||
from .custom_hypertoroidal_distribution import CustomHypertoroidalDistribution | ||
|
||
|
||
class CustomToroidalDistribution(CustomHypertoroidalDistribution, AbstractToroidalDistribution): | ||
class CustomToroidalDistribution( | ||
CustomHypertoroidalDistribution, AbstractToroidalDistribution | ||
): | ||
def __init__(self, f): | ||
AbstractToroidalDistribution.__init__(self) | ||
CustomHypertoroidalDistribution.__init__(self, f, 2) | ||
CustomHypertoroidalDistribution.__init__(self, f, 2) |
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