We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 570c381 commit 4dc84eaCopy full SHA for 4dc84ea
code_counter/core/counter.py
@@ -7,6 +7,7 @@
7
from code_counter.conf.config import Config
8
from code_counter.core.visualization import GraphVisualization
9
from code_counter.core.countable.iterator import CountableIterator, RemoteCountableIterator
10
+from code_counter.tools.progress import SearchingProgressBar
11
12
13
class CodeCounter:
@@ -46,7 +47,11 @@ def search(self):
46
47
if self.args.verbose:
48
self.__print_searching_verbose_title(output_file)
49
50
+ progress_bar = SearchingProgressBar()
51
+ progress_bar.start()
52
asyncio.run(self.__search(input_path, output_file))
53
+ progress_bar.stop()
54
+ progress_bar.join()
55
56
self.__print_result_info(output_file)
57
0 commit comments