Removing URL prefix for local URLs in blog posts

This commit is contained in:
Brandon Rozek 2022-12-18 12:25:45 -05:00
parent b02794d677
commit 6dc8bfbb89
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
21 changed files with 23 additions and 23 deletions

View file

@ -5,7 +5,7 @@ draft: false
tags: ["Python"]
---
A great [StackOverflow post](https://stackoverflow.com/a/35710527) by [Aaron Hall](https://stackoverflow.com/users/541136/aaron-hall) that shows how you can create an `export` decorator in order to not have to specify all the names you want to expose via [`__all__`](https://brandonrozek.com/blog/pythonall/).
A great [StackOverflow post](https://stackoverflow.com/a/35710527) by [Aaron Hall](https://stackoverflow.com/users/541136/aaron-hall) that shows how you can create an `export` decorator in order to not have to specify all the names you want to expose via [`__all__`](/blog/pythonall/).
The Decorator: