-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed private export problem with pyright/mypy
- Loading branch information
Showing
10 changed files
with
22 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from .contributor import Contributor | ||
from .dialect import Dialect | ||
from .contributor import Contributor as Contributor | ||
from .dialect import * | ||
from .field import * | ||
from .license import License | ||
from .package import Package | ||
from .resource import Resource | ||
from .license import License as License | ||
from .package import * | ||
from .resource import * | ||
from .schema import * | ||
from .source import Source | ||
from .source import Source as Source |
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,2 +1,2 @@ | ||
from .package import CkanPackage | ||
from .resource import CkanResource | ||
from .package import CkanPackage as CkanPackage | ||
from .resource import CkanResource as CkanResource |
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 +1 @@ | ||
from .package import DatacitePackage | ||
from .package import DatacitePackage as DatacitePackage |
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,2 +1,2 @@ | ||
from .package import DcatPackage | ||
from .resource import DcatResource | ||
from .package import DcatPackage as DcatPackage | ||
from .resource import DcatResource as DcatResource |
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,2 +1,2 @@ | ||
from .package import GithubPackage | ||
from .resource import GithubResource | ||
from .package import GithubPackage as GithubPackage | ||
from .resource import GithubResource as GithubResource |
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,2 +1,2 @@ | ||
from .field import PandasField | ||
from .schema import PandasSchema | ||
from .field import PandasField as PandasField | ||
from .schema import PandasSchema as PandasSchema |
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,2 +1,2 @@ | ||
from .field import PolarsField | ||
from .schema import PolarsSchema | ||
from .field import PolarsField as PolarsField | ||
from .schema import PolarsSchema as PolarsSchema |
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,2 +1,2 @@ | ||
from .field import SqlField | ||
from .schema import SqlSchema | ||
from .field import SqlField as SqlField | ||
from .schema import SqlSchema as SqlSchema |
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,2 +1,2 @@ | ||
from .package import ZenodoPackage | ||
from .resource import ZenodoResource | ||
from .package import ZenodoPackage as ZenodoPackage | ||
from .resource import ZenodoResource as ZenodoResource |
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 +1 @@ | ||
from .model import Model | ||
from .model import Model as Model |