Skip to content

Commit

Permalink
Add GDBFrontend directory to PATH in .pylintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanrhu committed Nov 29, 2020
1 parent 885f895 commit c9a6f15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
@@ -1,2 +1,2 @@
[MASTER]
init-hook='import sys; sys.path.append("python-libs")'
init-hook='import sys, os; sys.path.append("python-libs"); sys.path.append(os.getcwd());'
2 changes: 1 addition & 1 deletion statics.py
Expand Up @@ -8,7 +8,7 @@
# Licensed under GNU/GPLv3
# Copyright (C) 2019, Oğuzhan Eroğlu (https://oguzhaneroglu.com/) <rohanrhu2@gmail.com>

VERSION = [0, 3, 4, "beta"]
VERSION = [0, 3, 5, "git"]
VERSION_STRING = "v"+".".join([str(i) for i in VERSION[:-1]])+"-"+VERSION[-1]

"""
Expand Down

0 comments on commit c9a6f15

Please sign in to comment.