Run flake8 for general code and style cleanup

This commit is contained in:
Eric Torres
2022-01-10 19:53:46 -08:00
parent e60972fc73
commit 8dae78c735
5 changed files with 7 additions and 12 deletions

View File

@ -7,7 +7,6 @@
import shutil
import subprocess
import file_scripts.error as error
from pathlib import Path
@ -41,7 +40,7 @@ class FZFError(Exception):
return f"FZFError({self.exit_code})"
def __str__(self):
return str(__repr__)
return str(self.__repr__())
# ========== Functions ==========