We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae42ef3 commit 24fd7eeCopy full SHA for 24fd7ee
python-sdk/kiota-gen.py
@@ -15,7 +15,7 @@
15
16
# https://stackoverflow.com/a/7171315/7898052
17
def os_bits(machine=platform.machine().lower()):
18
- machine2bits = {"amd64": 64, "x86_64": 64, "i386": 32, "x86": 32}
+ machine2bits = {"amd64": 64, "arm64": 64, "x86_64": 64, "i386": 32, "x86": 32}
19
return machine2bits.get(machine, None)
20
21
0 commit comments