Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
alanisaac committed Sep 20, 2023
1 parent bed4692 commit 3565f4a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion rules-engine/src/rules_engine/import_test_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

from . import import_test_2


def try_it_out() -> bool:
foo = import_test_2.Foo()
foo.call_me()
return True
return True
3 changes: 2 additions & 1 deletion rules-engine/src/rules_engine/import_test_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Once that testing is complete, this module should be deleted.
"""


class Foo:
def call_me(self):
print("I was called!")
print("I was called!")

0 comments on commit 3565f4a

Please sign in to comment.