Skip to content
This repository was archived by the owner on Feb 6, 2022. It is now read-only.

Commit ab91145

Browse files
committed
Editing files for minor change
Signed-off-by: Aadhitya A <[email protected]>
1 parent e501ef0 commit ab91145

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@
33
[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors-)
44
<!-- ALL-CONTRIBUTORS-BADGE:END -->
55

6-
![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)
7-
8-
## Test status
6+
![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)
97
[![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)
108

119
### A CLI based Script tool to create CPP files for programming contests

codeit/codeit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def main():
4646
create_only_files(contestName, fileNames)
4747

4848
elif arg == "-v":
49-
print(colored.magenta('CODEIt v1.0.2 (c)2020 - 2021, alphaX86 under Arch-1'))
49+
print(colored.magenta('CODEIt v1.0.2 (c)2020 - 2021, @alphaX86'))
5050

5151
elif arg == "-h":
5252
help()

codeit/codeitInit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def init_agg(contestName, fileNames):
4242
# create input file
4343
write_to_file('input.txt', '', contestName)
4444
write_to_file('output.txt', '', contestName)
45-
print(colored.green('Files have been created without error TXT file. Happy Coding!'))
45+
print(colored.green('Files have been created. Happy Coding!'))
4646

4747
def create_only_files(contestName, fileNames):
4848
try:

codeit/codeitMeta.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#Default template
22
def template_cp():
3-
template = """#include <bits/stdc++.h>
3+
template = """#include <bits/stdc++.h>
4+
#include <iostream>
45
56
using namespace std;
67

0 commit comments

Comments
 (0)