libjam 0.0.16__py3-none-any.whl → 0.0.17__py3-none-any.whl
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.
libjam/drawer.py
CHANGED
@@ -88,13 +88,13 @@ class Drawer:
|
|
88
88
|
absolute_files.append(file)
|
89
89
|
return outpath(absolute_files)
|
90
90
|
|
91
|
-
# Returns a list of files in a given folder
|
91
|
+
# Returns a list of files in a given folder.
|
92
92
|
def get_files(self, path: str):
|
93
|
-
|
93
|
+
everything = self.get_all(path)
|
94
94
|
files = []
|
95
|
-
for
|
96
|
-
if self.is_file(
|
97
|
-
files.append(
|
95
|
+
for item in everything:
|
96
|
+
if self.is_file(item):
|
97
|
+
files.append(item)
|
98
98
|
return files
|
99
99
|
|
100
100
|
# Returns a list of folders in a given folder
|
@@ -1,11 +1,11 @@
|
|
1
1
|
libjam/__init__.py,sha256=iLE2y9r0Sfe3oIeoFHKwFIyLL6d_KcLP7fINd7pPAlY,145
|
2
2
|
libjam/captain.py,sha256=igx-ecKJBI_vBN-pW7KmSEnmYMIHQEb9tFzpy5qHmI8,5636
|
3
3
|
libjam/clipboard.py,sha256=5HxlO8ztLJPlnSCq4PncGvY4JGc9C4J2uHcepjC6zmg,3496
|
4
|
-
libjam/drawer.py,sha256
|
4
|
+
libjam/drawer.py,sha256=-IBS7HzoxVscqUQl8MndkOMBJwsciR_CjboGK6q9PvM,12060
|
5
5
|
libjam/flashcard.py,sha256=ulV4KPC3BRWLxwkQ87vsY0aM38nYpzOjUOISxTIRVDg,437
|
6
6
|
libjam/notebook.py,sha256=uGHqQD01SLrCIqMmzQayyk6PNeE15nJXJYUmmcJvf9U,4289
|
7
7
|
libjam/typewriter.py,sha256=6XcYIsCwoNkyyuwiDm3-QP52Dl70sJSGbO8ikjrPNvo,3996
|
8
|
-
libjam-0.0.
|
9
|
-
libjam-0.0.
|
10
|
-
libjam-0.0.
|
11
|
-
libjam-0.0.
|
8
|
+
libjam-0.0.17.dist-info/METADATA,sha256=jeITO0HyLsXgFKcZrnliLw64uZYyvBJBE_u-fUuUWWg,2141
|
9
|
+
libjam-0.0.17.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
10
|
+
libjam-0.0.17.dist-info/licenses/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
|
11
|
+
libjam-0.0.17.dist-info/RECORD,,
|
File without changes
|
File without changes
|