Skip to content

Commit

Permalink
Merge pull request #6 from Onemind-Services-LLC/sourcery/master
Browse files Browse the repository at this point in the history
Sourcery refactored master branch
  • Loading branch information
abhi1693 authored Jul 30, 2022
2 parents 7c7f875 + 53f71b9 commit 5276110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion oms/rclone/commands/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def __init__(self):
self.__password = os.environ.get("RC_PASSWORD", None)

def __execute(self, command: List) -> Any:
self.__log("debug", f"{' '.join([c for c in command])}")
self.__log("debug", f"{' '.join(list(command))}")
process = subprocess.run(command, capture_output=True, text=True)

if process.stderr != "":
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# https://caremad.io/2013/07/setup-vs-requirement/

with open('./requirements.txt') as r:
requirements = [line for line in r]
requirements = list(r)

with open("README.md", "r") as fh:
long_description = fh.read()
Expand Down

0 comments on commit 5276110

Please sign in to comment.