From ab91145a9969bc7ae8fa2635ec5f174138402c75 Mon Sep 17 00:00:00 2001 From: Aadhitya A Date: Sun, 21 Mar 2021 14:45:40 +0530 Subject: [PATCH] Editing files for minor change Signed-off-by: Aadhitya A --- README.md | 4 +--- codeit/codeit.py | 2 +- codeit/codeitInit.py | 2 +- codeit/codeitMeta.py | 3 ++- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 98f2e75..895a43f 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,7 @@ [![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors-) -![Python](https://img.shields.io/badge/Language-Python-blue?style=for-the-badge&logo=python) [![Docker](https://img.shields.io/badge/-Docker%20Hub-blue?style=for-the-badge&logo=docker)](https://hub.docker.com/repository/docker/aerox86/codeit) [![PyPI](https://img.shields.io/badge/-PyPI%20Official-green?style=for-the-badge&logo=python)](https://pypi.org/project/cxit) - -## Test status +![Python](https://img.shields.io/badge/Language-Python-blue?style=flat-square&logo=python) [![Docker](https://img.shields.io/badge/-Docker%20Hub-blue?style=flat-square&logo=docker)](https://hub.docker.com/repository/docker/aerox86/codeit) [![PyPI](https://img.shields.io/badge/-PyPI%20Official-green?style=flat-square&logo=python)](https://pypi.org/project/cxit) [![Build](https://github.com/Arch2x/codeit/workflows/Python%20package/badge.svg)](https://github.com/Arch2x/codeit/actions/workflows/python-package.yml) [![CodeQL](https://github.com/Arch2x/codeit/workflows/CodeQL/badge.svg)](https://github.com/Arch2x/codeit/actions/workflows/codeql-analysis.yml) [![Upload](https://github.com/Arch2x/codeit/workflows/Upload%20Python%20Package/badge.svg)](https://github.com/Arch2x/codeit/actions/workflows/python-publish.yml) ### A CLI based Script tool to create CPP files for programming contests diff --git a/codeit/codeit.py b/codeit/codeit.py index ef520f5..81cd175 100644 --- a/codeit/codeit.py +++ b/codeit/codeit.py @@ -46,7 +46,7 @@ def main(): create_only_files(contestName, fileNames) elif arg == "-v": - print(colored.magenta('CODEIt v1.0.2 (c)2020 - 2021, alphaX86 under Arch-1')) + print(colored.magenta('CODEIt v1.0.2 (c)2020 - 2021, @alphaX86')) elif arg == "-h": help() diff --git a/codeit/codeitInit.py b/codeit/codeitInit.py index 38d4c63..8fea02d 100644 --- a/codeit/codeitInit.py +++ b/codeit/codeitInit.py @@ -42,7 +42,7 @@ def init_agg(contestName, fileNames): # create input file write_to_file('input.txt', '', contestName) write_to_file('output.txt', '', contestName) - print(colored.green('Files have been created without error TXT file. Happy Coding!')) + print(colored.green('Files have been created. Happy Coding!')) def create_only_files(contestName, fileNames): try: diff --git a/codeit/codeitMeta.py b/codeit/codeitMeta.py index e740d42..0f83d25 100644 --- a/codeit/codeitMeta.py +++ b/codeit/codeitMeta.py @@ -1,6 +1,7 @@ #Default template def template_cp(): - template = """#include + template = """#include +#include using namespace std;