Compare commits
3 Commits
6391958e86
...
46470d2fe2
| Author | SHA1 | Date |
|---|---|---|
|
|
46470d2fe2 | |
|
|
1b94834eb1 | |
|
|
e9b655e46e |
|
|
@ -1,6 +1,3 @@
|
|||
import os
|
||||
import subprocess
|
||||
|
||||
|
||||
def clear():
|
||||
subprocess.call('clear' if os.name == 'posix' else 'cls')
|
||||
clear = lambda: os.system('cls' if os.name == 'nt' else 'clear')
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "dg-clt"
|
||||
version = "0.1.4"
|
||||
version = "0.1.6"
|
||||
description = "The Dazed Gerbil's Command Line Tools"
|
||||
authors = ["Calum Andrew Morrell <calum@drulum.com>"]
|
||||
readme = "README.md"
|
||||
|
|
|
|||
Loading…
Reference in New Issue