Skip to content

Commit

Permalink
Properly quote items in __all__ (#399)
Browse files Browse the repository at this point in the history
__all__ tells you the names of the members, not the members themselves. Quote the members.

Authors:
  - Kyle Edwards (https://github.com/KyleFromNVIDIA)

Approvers:
  - Bradley Dice (https://github.com/bdice)

URL: #399
  • Loading branch information
KyleFromNVIDIA authored Jul 3, 2024
1 parent 3c09088 commit 8104b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/libkvikio/libkvikio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

from libkvikio._version import __git_commit__, __version__

__all__ = [__git_commit__, __version__]
__all__ = ["__git_commit__", "__version__"]

0 comments on commit 8104b67

Please sign in to comment.