diff options
-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() ``` |