Add coding comments for files with utf8 characters in there.
authorScott Gasch <[email protected]>
Sat, 5 Feb 2022 17:38:32 +0000 (09:38 -0800)
committerScott Gasch <[email protected]>
Sat, 5 Feb 2022 17:38:32 +0000 (09:38 -0800)
conversion_utils.py
executors.py
histogram.py
logging_utils.py
string_utils.py

index 2c00ba48b362146435a2214cdd4780550b7a91c1..8e64a875c1ad4e3d89eeee33205693204afd5d87 100644 (file)
@@ -1,4 +1,5 @@
 #!/usr/bin/env python3
+# -*- coding: utf-8 -*-
 
 from typing import Callable, SupportsFloat
 
index 2f735b7c568638f6d8419d3b4cc2476aeb3f3b9f..69330129c9b86ec8c9710b2586b24d7c2dfee8f6 100644 (file)
@@ -1,4 +1,5 @@
 #!/usr/bin/env python3
+# -*- coding: utf-8 -*-
 
 from __future__ import annotations
 
index ba10a015d951309d4a8411f081b5789c0585f253..c673e161a6318fabeb155e1cdb2a2591abe730e0 100644 (file)
@@ -1,4 +1,5 @@
 #!/usr/bin/env python3
+# -*- coding: utf-8 -*-
 
 import math
 from numbers import Number
index 5dbc55260ec1970151433e86858e1e3e404dd0c9..ca1544150065b367b976d9ca43382fa1a6cff5e5 100644 (file)
@@ -1,4 +1,5 @@
 #!/usr/bin/env python3
+# -*- coding: utf-8 -*-
 
 """Utilities related to logging."""
 
index 6f3cc90ed46f5c238b0887848c1cf7504ec3bcc0..3ae9eeae96141fce9d4bb17516a5bace6ceb8b6f 100644 (file)
@@ -1,4 +1,5 @@
 #!/usr/bin/env python3
+# -*- coding: utf-8 -*-
 
 """The MIT License (MIT)