homa 0.13__tar.gz → 0.14__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.
Potentially problematic release.
This version of homa might be problematic. Click here for more details.
- {homa-0.13 → homa-0.14}/PKG-INFO +1 -1
- {homa-0.13 → homa-0.14}/homa/main.py +5 -1
- {homa-0.13 → homa-0.14}/homa.egg-info/PKG-INFO +1 -1
- {homa-0.13 → homa-0.14}/LICENSE +0 -0
- {homa-0.13 → homa-0.14}/README.md +0 -0
- {homa-0.13 → homa-0.14}/homa/__init__.py +0 -0
- {homa-0.13 → homa-0.14}/homa/classes/Collection.py +0 -0
- {homa-0.13 → homa-0.14}/homa/classes/Logger.py +0 -0
- {homa-0.13 → homa-0.14}/homa/classes/Repository.py +0 -0
- {homa-0.13 → homa-0.14}/homa/classes/__init__.py +0 -0
- {homa-0.13 → homa-0.14}/homa/constants.py +0 -0
- {homa-0.13 → homa-0.14}/homa/helpers.py +0 -0
- {homa-0.13 → homa-0.14}/homa.egg-info/SOURCES.txt +0 -0
- {homa-0.13 → homa-0.14}/homa.egg-info/dependency_links.txt +0 -0
- {homa-0.13 → homa-0.14}/homa.egg-info/requires.txt +0 -0
- {homa-0.13 → homa-0.14}/homa.egg-info/top_level.txt +0 -0
- {homa-0.13 → homa-0.14}/setup.cfg +0 -0
- {homa-0.13 → homa-0.14}/setup.py +0 -0
{homa-0.13 → homa-0.14}/PKG-INFO
RENAMED
|
@@ -3,6 +3,7 @@ import numpy
|
|
|
3
3
|
from typing import List
|
|
4
4
|
from .helpers import collection
|
|
5
5
|
from .helpers import danger
|
|
6
|
+
from .helpers import is_colab
|
|
6
7
|
|
|
7
8
|
from .classes.Repository import Repository
|
|
8
9
|
|
|
@@ -39,7 +40,10 @@ def show(key: any = None) -> None:
|
|
|
39
40
|
|
|
40
41
|
elif key is None:
|
|
41
42
|
for key, image in Repository.images.items():
|
|
42
|
-
|
|
43
|
+
if is_colab():
|
|
44
|
+
Repository.imshow(image)
|
|
45
|
+
else:
|
|
46
|
+
Repository.imshow(key, image)
|
|
43
47
|
|
|
44
48
|
elif key is not None:
|
|
45
49
|
if key in Repository.images:
|
{homa-0.13 → homa-0.14}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{homa-0.13 → homa-0.14}/setup.py
RENAMED
|
File without changes
|