diff options
| author | Scott Gasch <[email protected]> | 2022-02-05 09:38:32 -0800 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-02-05 09:38:32 -0800 |
| commit | 20dc43226d16e404514c3cdfba00e04469dbc17d (patch) | |
| tree | 2f33ef19cb8e3af095e782148dc118caf9f30946 | |
| parent | a3eb24ea374a7f231e595c1a6e2c8e49d482c594 (diff) | |
Add coding comments for files with utf8 characters in there.
| -rw-r--r-- | conversion_utils.py | 1 | ||||
| -rw-r--r-- | executors.py | 1 | ||||
| -rw-r--r-- | histogram.py | 1 | ||||
| -rw-r--r-- | logging_utils.py | 1 | ||||
| -rw-r--r-- | string_utils.py | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/conversion_utils.py b/conversion_utils.py index 2c00ba4..8e64a87 100644 --- a/conversion_utils.py +++ b/conversion_utils.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- from typing import Callable, SupportsFloat diff --git a/executors.py b/executors.py index 2f735b7..6933012 100644 --- a/executors.py +++ b/executors.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- from __future__ import annotations diff --git a/histogram.py b/histogram.py index ba10a01..c673e16 100644 --- a/histogram.py +++ b/histogram.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- import math from numbers import Number diff --git a/logging_utils.py b/logging_utils.py index 5dbc552..ca15441 100644 --- a/logging_utils.py +++ b/logging_utils.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- """Utilities related to logging.""" diff --git a/string_utils.py b/string_utils.py index 6f3cc90..3ae9eea 100644 --- a/string_utils.py +++ b/string_utils.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- """The MIT License (MIT) |
