-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref(utils): Split
email
utils into files (#28614)
- Loading branch information
Showing
24 changed files
with
917 additions
and
964 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
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 |
---|---|---|
@@ -1,3 +1,10 @@ | ||
""" | ||
This is the Utilities Module. It is the home to small, self-contained classes | ||
and functions that do useful things. This description is intentionally general | ||
because there are basically no limits to what functionality can be considered | ||
a util. However, within this directory we should avoid importing Sentry models | ||
or modules with side effects. | ||
""" | ||
# Make sure to not import anything here. We want modules below | ||
# sentry.utils to be able to import without having to pull in django | ||
# or other sources that might not exist. |
Oops, something went wrong.