Skip to content

Commit

Permalink
Merge pull request #101 from qlrd/main
Browse files Browse the repository at this point in the history
v0.0.20-beta
  • Loading branch information
qlrd authored Oct 28, 2024
2 parents 66b21d3 + ee8a9ff commit f2ae4fe
Show file tree
Hide file tree
Showing 53 changed files with 2,796 additions and 911 deletions.
1 change: 1 addition & 0 deletions .ci/create-spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
# to keep `sys` module enabled (necessary for Kboot)
BUILDER_ARGS.append("--onefile")
BUILDER_ARGS.append("--console")
BUILDER_ARGS.append("--hidden-import=win32timezone")
BUILDER_ARGS.append("--hide-console=minimize-early")

elif SYSTEM == "Darwin":
Expand Down
9 changes: 6 additions & 3 deletions .pylint/src
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ clear-cache-post-run=no
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code.
extension-pkg-allow-list=cv2
extension-pkg-allow-list=cv2,win32file

# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
Expand Down Expand Up @@ -287,6 +287,9 @@ ignored-parents=
# Maximum number of arguments for function / method.
max-args=10

# Maximum number of positional arguments
max-positional-arguments=10

# Maximum number of attributes for a class (see R0902).
max-attributes=20

Expand All @@ -303,10 +306,10 @@ max-locals=20
max-parents=10

# Maximum number of public methods for a class (see R0904).
max-public-methods=25
max-public-methods=30

# Maximum number of return / yield for function / method body.
max-returns=6
max-returns=7

# Maximum number of statements in function / method body.
max-statements=50
Expand Down
3 changes: 3 additions & 0 deletions .pylint/tests
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,9 @@ ignored-parents=
# Maximum number of arguments for function / method.
max-args=10

# Maximum number of positional arguments
max-positional-arguments=10

# Maximum number of attributes for a class (see R0902).
max-attributes=7

Expand Down
Binary file not shown.
Loading

0 comments on commit f2ae4fe

Please sign in to comment.