This repository has been archived by the owner on May 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Corrected typo in units (#37) * Added object representation (#39) * Unused imports (#40) * isort * linters ci * API return objects are now iterable (#38) * fix README * Async request fix and other minor changes (#41) * Corrected typo in units * Unused imports * API return objects are now iterable * Added object representation * Added darksky__unavailable flag. Not sure about the actual type (bool?) See https://darksky.net/dev/docs#flags for more details * Simplified camelCase utility function * Patched async request yarl type error (List[str]) async make_request now accepts arguments of type List[str] * Fix requirements & style * Disabled docstring linter rules Co-authored-by: Vysybyl <[email protected]>
- Loading branch information
Showing
23 changed files
with
960 additions
and
291 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[flake8] | ||
exclude = venv/*,tests/data.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 |
---|---|---|
|
@@ -3,9 +3,7 @@ __pycache__/ | |
*.py[cod] | ||
*$py.class | ||
|
||
# VIM | ||
*~ | ||
*.swp | ||
artefacts | ||
|
||
# C extensions | ||
*.so | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[settings] | ||
line_length=79 | ||
skip=venv |
Oops, something went wrong.