Skip to content

Commit b37caa7

Browse files
committed
enhancement: remove unused pprint statement
1 parent 6c2777c commit b37caa7

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.1.2 — 2025-02-15
9+
### Removed
10+
11+
- [x] remove unused `pprint` statement
12+
813
## 0.1.1 — 2025-02-15
914
### Removed
1015

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name='yoficator',
10-
version='0.1.1',
10+
version='0.1.2',
1111
description='A Russian text yoficator (ёфикатор)',
1212
long_description=long_description,
1313
long_description_content_type='text/markdown',

yoficator/__main__.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from __future__ import print_function, unicode_literals
44
import codecs
55
import os, sys
6-
import pprint
76
import regex as re
87

98
#-------------------------------------------------------------------------#
@@ -66,8 +65,6 @@
6665

6766
# TODO Better handle lowercase, uppercase
6867

69-
pp = pprint.PrettyPrinter(4)
70-
7168
workingDir = os.path.abspath(os.path.dirname(__file__)) + '/_data'
7269
dictionaryFile = workingDir + "/yoficator.dic"
7370

0 commit comments

Comments
 (0)