Skip to content

Commit 5914eaa

Browse files
committed
Fix merge conflict.
2 parents b58e64a + c333703 commit 5914eaa

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ __pycache__
99
/docs/_build
1010
/.htmlcov
1111
*.egg-info/
12-
.vscode/
12+
.vscode/
13+
venv/

djclick/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from .adapter import CommandRegistrator as command # NOQA
88
from .adapter import GroupRegistrator as group, pass_verbosity # NOQA
99

10-
1110
# The RegEx in setup.py requires single quotes. Rather than change it, turn off Black.
1211
# fmt: off
1312
__version__ = '2.2.0'

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ def get_files(*bases):
8787
@staticmethod
8888
def get_metavar(name):
8989
data = Setup.read(os.path.join(PACKAGE, "__init__.py"))
90+
<<<<<<< HEAD
9091
print(name)
92+
=======
93+
>>>>>>> c3337038f32900ebc5e606c621f1f28b537f64b8
9194
value = (
9295
re.search(u"__{}__\s*=\s*u?'([^']+)'".format(name), data).group(1).strip()
9396
)

0 commit comments

Comments
 (0)