Skip to content

Commit

Permalink
Merge pull request #1036 from OWASP/cleanup
Browse files Browse the repository at this point in the history
Cleanup
  • Loading branch information
commjoen authored Oct 17, 2023
2 parents 2dad501 + 5083261 commit e8ac4af
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 60 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,7 @@ py_env
tmp/
.env
contributors_file*

##documentation
scripts/sort_contibutors/.env
scripts/sort_contibutors/contributors_file.*
1 change: 0 additions & 1 deletion scripts/sort_contibutors/contributors_file.html

This file was deleted.

57 changes: 0 additions & 57 deletions scripts/sort_contibutors/contributors_file.md

This file was deleted.

4 changes: 2 additions & 2 deletions scripts/sort_contibutors/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ def print_file(s: str, flag: bool) -> None:

def print_md(user_list: dict, label="") -> str:

string = '{}\n'.format(label)
string = '{}:\n\n'.format(label)
for value in user_list:
string += '- [{} @{}](https://www.github.com/{})\n'.format(value['name'],
value['username'], value['username'])
return string + '\n'
return string + '\n\n'


def print_html(leaders: dict, top_contributors: dict, contributors: dict, testers: dict, special_thanks: dict) -> str:
Expand Down

0 comments on commit e8ac4af

Please sign in to comment.