Skip to content

Commit

Permalink
Merge pull request #51 from angulo-solido/fix-#50
Browse files Browse the repository at this point in the history
  • Loading branch information
MiguelNdeCarvalho authored May 13, 2022
2 parents 3aa1257 + eb51a04 commit 25cffa5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terrabutler/__main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sys
from sys import exit
from terrabutler.click import main

if __name__ == "__main__":
sys.exit(main())
exit(main())
1 change: 1 addition & 0 deletions terrabutler/click.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import click
from colorama import Fore
from sys import exit
from os import path
from terrabutler.__init__ import (
__name__,
Expand Down
1 change: 1 addition & 0 deletions terrabutler/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from terrabutler.utils import paths
from click import confirm
from colorama import Fore
from sys import exit
import boto3
import os
import subprocess
Expand Down
1 change: 1 addition & 0 deletions terrabutler/inception.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from terrabutler.utils import paths
from colorama import Fore
from os import path
from sys import exit
import subprocess


Expand Down
3 changes: 3 additions & 0 deletions terrabutler/requirements.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from sys import exit


def check_requirements():
"""
Check requirements before running the application.
Expand Down
1 change: 1 addition & 0 deletions terrabutler/tf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import signal
import subprocess
from colorama import Fore
from sys import exit
from terrabutler.settings import get_settings
from terrabutler.utils import paths

Expand Down

0 comments on commit 25cffa5

Please sign in to comment.