Compare commits

..

No commits in common. "46470d2fe2dc87c27238c5a995099a6d25137a21" and "6391958e860912f11da6d1df8c92981122a2bf91" have entirely different histories.

2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
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')

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "dg-clt"
version = "0.1.6"
version = "0.1.4"
description = "The Dazed Gerbil's Command Line Tools"
authors = ["Calum Andrew Morrell <calum@drulum.com>"]
readme = "README.md"