Skip to content

Commit

Permalink
Fixed bug, removed deps, pushed version
Browse files Browse the repository at this point in the history
  • Loading branch information
HallerPatrick committed Nov 1, 2020
1 parent e13262c commit 63ed9e5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
2 changes: 2 additions & 0 deletions frosch/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ def tree_str(self):
@property
def type_name(self):
"""Getter for type of variable in string format"""
if self.type is None:
return "None"
return self.type.__name__


Expand Down
30 changes: 15 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
[tool.poetry]
name = "frosch"
version = "0.1.1"
version = "0.1.2"
description = "Better runtime error messages"
authors = ["Patrick Haller <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.6"
colorama = "^0.4.4"
Pygments = "^2.7.2"
pytest-cov = "^2.10.1"

[tool.poetry.dev-dependencies]
pylint = "^2.6.0"
pytest = "^6.1.2"
coverage = "^5.3"
pytest-cov = "^2.10.1"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 63ed9e5

Please sign in to comment.