Skip to content

Commit

Permalink
Merge pull request #5 from airween/nativeuse
Browse files Browse the repository at this point in the history
feat: Change import methods of modules
  • Loading branch information
fzipi authored Feb 17, 2025
2 parents 076b968 + 965ec55 commit f1a4395
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/crs_linter/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,14 @@
from dulwich.contrib.release_robot import get_current_version, get_recent_tags
from semver import Version

from crs_linter.linter import Check
from crs_linter.logger import Logger

try:
from linter import Check
except:
from crs_linter.linter import Check
try:
from logger import Logger
except:
from crs_linter.logger import Logger

def remove_comments(data):
"""
Expand Down

0 comments on commit f1a4395

Please sign in to comment.