Skip to content

Commit

Permalink
Use double quotes for strings (black styling)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorshea committed Feb 26, 2021
1 parent 47d0936 commit c4abb10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion idom/client/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def web_module_names() -> Set[str]:
if Path("common") in rel_pth.parents:
continue
module_path = str(rel_pth.as_posix())
if module_path.endswith('.js'):
if module_path.endswith(".js"):
module_path = module_path[:-3]
names.append(module_path)
return set(names)
Expand Down

0 comments on commit c4abb10

Please sign in to comment.