Le Tran Anh Duc | anhanh11001
- Organization: FOSSASIA
- Project: Open Event Attendee Android
- App Link: Play Store, F-Droid
| // The code below is a perfectly formatted code regardings to ktlint | |
| // To compare with ktfmt, copy this and format it in https://facebook.github.io/ktfmt/index.html | |
| // Please decide yourself whether you think one is better than the other, comment below is my personal preferences | |
| // Cases where I think code looks good before reformatting (💪 ktlint 💪) | |
| fun aFuncName( | |
| inputOne: String, | |
| inputTwo: String, | |
| inputThree: Boolean |
| import os | |
| import xlrd | |
| from openpyxl.workbook import Workbook as openpyxlWorkbook | |
| def convert_file(original_file, new_file): | |
| xlsBook = xlrd.open_workbook(original_file) | |
| workbook = openpyxlWorkbook() |