Skip to content

Commit

Permalink
fix: remove extra parent in another portion of the code
Browse files Browse the repository at this point in the history
  • Loading branch information
AngRodrigues committed Jan 7, 2025
1 parent fb9b609 commit 5ecc283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion map2loop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class DependencyChecker:

def __init__(self, package_name, dependency_file="dependencies.txt"):
self.package_name = package_name
self.dependency_file = pathlib.Path(__file__).parent.parent / dependency_file
self.dependency_file = pathlib.Path(__file__).parent / dependency_file
self.required_version = self.get_required_version()
self.installed_version = self.get_installed_version()

Expand Down

0 comments on commit 5ecc283

Please sign in to comment.