Skip to content

Commit

Permalink
remove trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberw committed Mar 4, 2023
1 parent 6286e94 commit bc5e06e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion har2locust/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def load_plugins(plugins: list[str] = [], disable_plugins: list[str] = []):
sys.path.append(os.path.curdir) # accept plugins by relative path
for plugin in default_and_extra_plugins:
# in windows OS print(plugin) echo har2locust\default_plugins\1_resourcefilter.py
import_path = plugin.replace("/", ".").replace("\\", ".").rstrip(".py")
import_path = plugin.replace("/", ".").replace("\\", ".").rstrip(".py")
importlib.import_module(import_path)
logging.debug("imported " + import_path)
logging.debug(f"loaded plugins {default_and_extra_plugins}")
Expand Down

0 comments on commit bc5e06e

Please sign in to comment.