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