Skip to content

Commit

Permalink
remove sorting feature
Browse files Browse the repository at this point in the history
  • Loading branch information
mursalatul committed Jan 23, 2024
1 parent 6935273 commit 0473456
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ADMIN/MAINTAIN/classes/handle_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ def add_link(self):
inner_dic = dict()
inner_dic["folder_url"] = "https://github.com/mursalatul/code-park/tree/master/" + folder
inner_dic["file_number"] = f"{len(file)}"
file.sort()
# sort is working locally but is not working in github action. will fix it later
# file.sort()
for f in file:
inner_dic[f] = inner_dic["folder_url"] + f"/{f}"
self.dic[folder] = inner_dic
Expand Down

0 comments on commit 0473456

Please sign in to comment.