Compare commits

...

3 Commits

2 changed files with 2 additions and 5 deletions

View File

@ -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')

View File

@ -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"