pyquoks 1.1.0__tar.gz → 1.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyquoks
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: Пакет PyPI для часто используемых модулей в проектах diquoks
5
5
  Home-page: https://diquoks.ru
6
6
  Author: Denis Titovets
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = pyquoks
3
- version = 1.1.0
3
+ version = 1.1.1
4
4
  author = Denis Titovets
5
5
  author_email = den232titovets@yandex.ru
6
6
  description = Пакет PyPI для часто используемых модулей в проектах diquoks
@@ -12,7 +12,7 @@ class IDataProvider:
12
12
  def __init__(self) -> None:
13
13
  for k, v in self._DATA_VALUES.items():
14
14
  try:
15
- with open(self._PATH.format(k), "rb", encoding="utf-8") as file:
15
+ with open(self._PATH.format(k), "rb") as file:
16
16
  setattr(self, k, v(json_data=json.loads(file.read())))
17
17
  except:
18
18
  setattr(self, k, None)
@@ -96,7 +96,7 @@ class IAssetsProvider:
96
96
 
97
97
  @staticmethod
98
98
  def file_image(path: str) -> PIL.Image.Image:
99
- with open(path, "rb", encoding="utf-8") as file:
99
+ with open(path, "rb") as file:
100
100
  return PIL.Image.open(io.BytesIO(file.read()))
101
101
 
102
102
  @staticmethod
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyquoks
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: Пакет PyPI для часто используемых модулей в проектах diquoks
5
5
  Home-page: https://diquoks.ru
6
6
  Author: Denis Titovets
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes