-
Notifications
You must be signed in to change notification settings - Fork 7
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 #161 from CasperWA/use_simple_caching
Add caching using `CacheControl`: https://cachecontrol.readthedocs.io/ Storing an object-store-like cache using `lockfile`. This should ensure Thread-safe caching. Avoid caching `localhost` - important for development. --- Better integrate `flake8`.
- Loading branch information
Showing
9 changed files
with
198 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# pylint: disable=undefined-variable | ||
from .filter_inputs import * | ||
from .multi_checkbox import * | ||
from .output_summary import * | ||
from .periodic_table import * | ||
from .provider_database import * | ||
from .results import * | ||
from .filter_inputs import * # noqa: F403 | ||
from .multi_checkbox import * # noqa: F403 | ||
from .output_summary import * # noqa: F403 | ||
from .periodic_table import * # noqa: F403 | ||
from .provider_database import * # noqa: F403 | ||
from .results import * # noqa: F403 | ||
|
||
|
||
__all__ = ( | ||
filter_inputs.__all__ # noqa | ||
+ multi_checkbox.__all__ # noqa | ||
+ output_summary.__all__ # noqa | ||
+ periodic_table.__all__ # noqa | ||
+ provider_database.__all__ # noqa | ||
+ results.__all__ # noqa | ||
filter_inputs.__all__ # noqa: F405 | ||
+ multi_checkbox.__all__ # noqa: F405 | ||
+ output_summary.__all__ # noqa: F405 | ||
+ periodic_table.__all__ # noqa: F405 | ||
+ provider_database.__all__ # noqa: F405 | ||
+ results.__all__ # noqa: F405 | ||
) |
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
Oops, something went wrong.