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

Commit

Permalink
Editing files for minor change
Browse files Browse the repository at this point in the history
Signed-off-by: Aadhitya A <aadhitya864@gmail.com>
  • Loading branch information
alphaX86 committed Mar 21, 2021
1 parent e501ef0 commit ab91145
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
[![All Contributors](https://img.shields.io/badge/all_contributors-3-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->

![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
Expand Down
2 changes: 1 addition & 1 deletion codeit/codeit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion codeit/codeitInit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion codeit/codeitMeta.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#Default template
def template_cp():
template = """#include <bits/stdc++.h>
template = """#include <bits/stdc++.h>
#include <iostream>
using namespace std;
Expand Down

0 comments on commit ab91145

Please sign in to comment.