diff options
author | Cody Hiar <cody@hiar.ca> | 2021-03-19 21:39:15 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2021-03-19 21:39:15 -0600 |
commit | ccabbd345fce9941ff9f3c8e19d5ae3de5eb9d2a (patch) | |
tree | bb58e53b3cbf82a42b68d6f80561e242a650c77d | |
parent | 942d477a3ae9a8ac8500467f5535f3e1b369fbc4 (diff) |
-rw-r--r-- | slides.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -19,7 +19,7 @@ * www.codyhiar.com * www.github.com/thornycrackers -# Past Presentations (available on GitHub) +# Past Presentations * Docker for Homo Troglodytes (YEGSEC) * Scraping with scrapy (YEGSEC) @@ -88,7 +88,7 @@ example. ``` APIURI = "https://lol.nope/redacted" -infra_client_ID = "ALSO-REDACT" +infra_client_ID = "ALSO-REDACT" userlist = { ... } ``` @@ -96,7 +96,7 @@ vs ``` APIURI = "https://lol.nope/redacted" -INFRA_CLIENT_ID = "ALSO-REDACT" +INFRA_CLIENT_ID = "ALSO-REDACT" USERLIST = ( ... ) ``` @@ -234,7 +234,7 @@ except ConnectionError: logging.error("...") ``` -If we have multiple exceptions we can put them all on the same line. +If we have multiple exceptions we can put them all on the same line. ------------------------------------------------- @@ -252,7 +252,7 @@ vs def main(): mystr = "Hello" print(mystr) - + if __name__ == "__main__": main() ``` |