Skip to content

Commit

Permalink
Test stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed May 24, 2024
1 parent c6c52ff commit 1163ea2
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions meta_package_manager/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,10 @@
.. code-block:: shell-session
$ python -m meta_package_manager
Removes empty string and current working directory from the first entry of
``sys.path``, if present to avoid using current directory
in subcommands when invoked as ``python -m meta_package_manager <command>``.
"""

from __future__ import annotations

import os
import sys

if sys.path[0] in ("", os.getcwd()):
sys.path.pop(0)


def main():
"""Execute the CLI but force its name to not let Click defaults to:
Expand Down

0 comments on commit 1163ea2

Please sign in to comment.