libjam 0.0.10__tar.gz → 0.0.11__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.
- {libjam-0.0.10 → libjam-0.0.11}/PKG-INFO +1 -1
- {libjam-0.0.10 → libjam-0.0.11}/build.sh +1 -1
- {libjam-0.0.10 → libjam-0.0.11}/libjam/drawer.py +5 -0
- {libjam-0.0.10 → libjam-0.0.11}/pyproject.toml +1 -1
- libjam-0.0.10/requirements.txt +0 -3
- {libjam-0.0.10 → libjam-0.0.11}/.gitignore +0 -0
- {libjam-0.0.10 → libjam-0.0.11}/LICENSE +0 -0
- {libjam-0.0.10 → libjam-0.0.11}/README.md +0 -0
- {libjam-0.0.10 → libjam-0.0.11}/libjam/__init__.py +0 -0
- {libjam-0.0.10 → libjam-0.0.11}/libjam/captain.py +0 -0
- {libjam-0.0.10 → libjam-0.0.11}/libjam/clipboard.py +0 -0
- {libjam-0.0.10 → libjam-0.0.11}/libjam/flashcard.py +0 -0
- {libjam-0.0.10 → libjam-0.0.11}/libjam/notebook.py +0 -0
- {libjam-0.0.10 → libjam-0.0.11}/libjam/typewriter.py +0 -0
@@ -40,6 +40,11 @@ def realpaths(path: list):
|
|
40
40
|
# Deals with files
|
41
41
|
class Drawer:
|
42
42
|
|
43
|
+
# Converts the given path to absolute
|
44
|
+
def absolute_path(self, path):
|
45
|
+
path = realpath(path)
|
46
|
+
return outpath(path)
|
47
|
+
|
43
48
|
# Returns True if give a path to folder
|
44
49
|
def is_folder(self, path: str):
|
45
50
|
if path == '':
|
libjam-0.0.10/requirements.txt
DELETED
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
|