summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-04-01 22:09:02 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-04-01 22:18:39 -0500
commit8244ddf7bdd76888484859fcdf9a38b0f1d96ad9 (patch)
tree2d52bbb3434a5278fe98d63a5ac9649102c6f7ea /examples
parenta099d60f5b8a78d3783d4e12036eae8e287b2c42 (diff)
downloadrequests-cache-8244ddf7bdd76888484859fcdf9a38b0f1d96ad9.tar.gz
Fix remaining linting issues, and add flake8 to 'analyze' job in GitHub Actions
Diffstat (limited to 'examples')
-rw-r--r--examples/basic_usage.py1
-rw-r--r--examples/session_patch.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/examples/basic_usage.py b/examples/basic_usage.py
index 3888681..5234e43 100644
--- a/examples/basic_usage.py
+++ b/examples/basic_usage.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+# flake8: noqa: F841
"""A Simple example using requests-cache with httpbin"""
import time
diff --git a/examples/session_patch.py b/examples/session_patch.py
index 8ae900b..f84e72e 100644
--- a/examples/session_patch.py
+++ b/examples/session_patch.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python
+# flake8: noqa: F841
"""The same as `basic_usage.py`, but using global session patching"""
import time