Skip to content

Commit ae42ef3

Browse files
committed
lower
1 parent a7b44b0 commit ae42ef3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python-sdk/kiota-gen.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515

1616
# https://stackoverflow.com/a/7171315/7898052
17-
def os_bits(machine=platform.machine()):
18-
machine2bits = {"AMD64": 64, "x86_64": 64, "i386": 32, "x86": 32}
17+
def os_bits(machine=platform.machine().lower()):
18+
machine2bits = {"amd64": 64, "x86_64": 64, "i386": 32, "x86": 32}
1919
return machine2bits.get(machine, None)
2020

2121

0 commit comments

Comments
 (0)