diff --git a/.doctrees/environment.pickle b/.doctrees/environment.pickle index 7d9b2ad..f3bdee5 100644 Binary files a/.doctrees/environment.pickle and b/.doctrees/environment.pickle differ diff --git a/_modules/pysubyt/sinks.html b/_modules/pysubyt/sinks.html index 6a6b3f8..5a4ba4b 100644 --- a/_modules/pysubyt/sinks.html +++ b/_modules/pysubyt/sinks.html @@ -296,7 +296,7 @@

Source code for pysubyt.sinks

 
[docs] def open(self): - self._fopen = open(self._file_path, "w")
+ self._fopen = open(self._file_path, "w", encoding="utf-8")
@@ -362,7 +362,7 @@

Source code for pysubyt.sinks

             return
         assert_writable(file_path, self._force_output)
         logger.info(f"Creating {file_path}")
-        with open(file_path, "w") as f:
+        with open(file_path, "w", encoding="utf-8") as f:
             f.write(part)