Skip to content

Commit

Permalink
Changed removed the pylama check for imports after sys path update
Browse files Browse the repository at this point in the history
  • Loading branch information
Attumm committed Aug 2, 2024
1 parent 3d9f345 commit c48120b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions examples/example_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@

sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

from meesee import startapp
from meesee import Meesee
from meesee import Meesee # noqa: E402

config = {
"namespace": "removeme",
Expand Down
3 changes: 2 additions & 1 deletion examples/example_multi_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@

sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

from meesee import startapp
from meesee import startapp # noqa: E402


config = {
"namespace": "removeme",
Expand Down
2 changes: 1 addition & 1 deletion examples/example_produce.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

from meesee import RedisQueue
from meesee import RedisQueue # noqa: E402

config = {
"namespace": "removeme",
Expand Down

0 comments on commit c48120b

Please sign in to comment.