Skip to content
Snippets Groups Projects
Commit 543679fe authored by Marco De Donno's avatar Marco De Donno
Browse files

Add the 'get_multi_img_fpc()' function

parent d9867a51
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
def get_multi_img_fpc( fpc ):
multi_img_fpc = {
1: [ 1, 11 ],
2: [ 2, 13 ],
3: [ 3, 13 ],
4: [ 4, 13 ],
5: [ 5, 13 ],
6: [ 6, 12 ],
7: [ 7, 14 ],
8: [ 8, 14 ],
9: [ 9, 14 ],
10: [ 10, 14 ]
}
fpc = int( fpc )
fpcs = multi_img_fpc.get( fpc, [ fpc ] )
return fpcs
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment