Skip to content

Commit fc2b260

Browse files
committed
remove unnecessary semicolon
1 parent 499a28b commit fc2b260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/onepassword/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# In empirical tests, we determined that maximum message size that can cross the FFI boundary
77
# is ~128MB. Past this limit, FFI will throw an error and the program will crash.
88
# We set the limit to 50MB to be safe and consistent with the other SDKs, to be reconsidered upon further testing
9-
MESSAGE_LIMIT = 50 * 1024 * 1024;
9+
MESSAGE_LIMIT = 50 * 1024 * 1024
1010

1111
machine_arch = platform.machine().lower()
1212

0 commit comments

Comments
 (0)